Is postscan
the same as scan
but with the first element dropped?
#2731
Answered
by
shlok
eddiemundo
asked this question in
Q&A
-
I'm not sure since the implementation of |
Beta Was this translation helpful? Give feedback.
Answered by
shlok
Dec 25, 2024
Replies: 1 comment
-
Yes (if I understand you correctly). |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
eddiemundo
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes (if I understand you correctly).
postscan
drops the extraction of the initial fold state, butscan
doesn't. (In practice, I have only usedpostscan
because that simply yields an output for each input, whereasscan
yields this one extra thing in the beginning.)