Releases: ScottBoyce-Python/ResultContainer
v0.4
Third release of ResultContainer.
Added more tests and inspect
, Ok_and
, and Ok_or
methods. Added an attribute and method check for accidental use of lower case methods. For example, the correct use is Ok(5).add_Err_msg("error")
, but Ok(5).add_err_msg("error")
will redirect to the case correct version.
Lots of other changes, see commit history for more details.
v0.3
Second release of ResultContainer.
Still under heavy development so method names and functionality are expected to change.
Major chains are simplifying the structure by merging the _Ok and _Err attributes to _val.
if _val is an Err then it must be a ResultErr type.
ResultErr removed error codes to improve speed.
Lots of other changes, see commit history for more details.
v0.2
Initial release of ResultContainer.
Still under heavy development so method names and functionality are expected to change.