class Bools
package thx
Static methods
staticcanParse (v:String):Bool
Returns true if the passed value is either true or false (case insensitive).
staticinline option<A> (cond:Bool, a:A):Option<A>
Depending upon the condition, return the provided value wrapped in a Some, or None if the condition is false.
staticparse (v:String):Bool
Returns true/false if the passed value is true/false (case insensitive); with any other value it will return null.