Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
what's the difference between sum({$*< and sum({<?
If you remove the star, there is no difference.
With star, I don't know.
There is no differences between them.
- Marcus
If you are using alternate states,
{$< ... will reference the default state, while {< ... the inherited state
{$*< ...>} will return a set that is the intersection between $ and <...>. $ is the set of selections in the document and this character can be omitted because this is the default set. So can remove $* from {$*< ...>} to leave only {< ...>}.
Sweet. I did not know that. Thanks!