Val.double constructor

Val.double(
  1. double val
)

Creates a Val with a given double.

Implementation

Val.double(double val) {
  _doubleVal = val;
}