Wiki

Clone wiki

symja_android_library / Symbols / Reap

Reap

Reap(expr)
gives the result of evaluating expr, together with all values sown during this evaluation. Values sown with different tags are given in different lists.

Examples

>>> Reap(Sow(3); Sow(1))
{1,{{3,1}}}

Updated