Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 1.18 KB

README.md

File metadata and controls

36 lines (23 loc) · 1.18 KB

ReFreSH.Jarvis

maven license GitHub last commit GitHub repo size GitHub code size

View in maven-central

Jarvis is a Light-weight Library contains very useful functions, like NullCoalescing and TryParse for Java.

Previously named as PlasticMetal.Jarvis.

Usage:

NullCoalescing:

In class ReFreSH.Jarvis.Common, CoalesceNull(a,b) equals a??b (as C# expression)

TryParse:

In class ReFreSH.Jarvis.Parse, each TryParse function returns a TryResult, whose field Result represents whether the parsing succeeded or not, and field Out stores the output of parsing.