You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With v1.2.4 you can now write _.chain(list) instead _(list).chain()
The sentence:
"Calling chain on a wrapped object will cause all future method calls to return wrapped objects as well. When you've finished the computation, use value to retrieve the final value."
Should be modified to something like:
"Calling chain will cause all future method calls to return wrapped objects. When you've finished the computation, use value to retrieve the final value."
Because with the first sentence we can misinterpret that we can only use chain in "wrapped mode" (_(list).chain())
The text was updated successfully, but these errors were encountered:
With v1.2.4 you can now write _.chain(list) instead _(list).chain()
The sentence:
"Calling chain on a wrapped object will cause all future method calls to return wrapped objects as well. When you've finished the computation, use value to retrieve the final value."
Should be modified to something like:
"Calling chain will cause all future method calls to return wrapped objects. When you've finished the computation, use value to retrieve the final value."
Because with the first sentence we can misinterpret that we can only use chain in "wrapped mode" (_(list).chain())
The text was updated successfully, but these errors were encountered: