Replies: 2 comments
-
It would be even better to have the possibility to change level in the Stream pipeline like that: Stream.of(["1", "2", "A", None]) \
.error_level(ErrorLevel.RAISE) \
.map_to_str() \
.error_level(ErrorLevel.IGNORE) \
.map_to_int() \
.for_each(print) # 1 2 |
Beta Was this translation helpful? Give feedback.
0 replies
-
🚀 Finally, error handling arrived in Version 0.3.0 (#48)! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
A nice feature would be to configure the error level, so that this code doesn’t throw an exception:
And this code should throw an exception:
Beta Was this translation helpful? Give feedback.
All reactions