Val.int constructor

Val.int(
  1. int val
)

Creates a Val with a given integer.

Implementation

Val.int(int val) {
  _intVal = val;
}