Replies: 1 comment 12 replies
-
I'm not a fan of function names like this. I'll go with the consensus but my preference is to stick with readable names. Even if not everyone is fluent in English, you can use a dictionary. No dictionary will tell you what |
Beta Was this translation helpful? Give feedback.
12 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
ZIO is using
>>>
alias withvia
and I think it's very readable .And FS2 is using
>>
alias withflatmap(s: => Stream)
too.There is already a
++
in scaladsl.And there is a
def >>>(e: Enumerator[E]): Enumerator[E] = andThen(e)
in https://github.com/playframework/play-iterateesBeta Was this translation helpful? Give feedback.
All reactions