Val.bTrue constructor

Val.bTrue()

Creates a Val with boolean = true.

Implementation

Val.bTrue() {
  _boolVal = true;
}