Triple<L, M, R> constructor
Triple<L, M, R> (
- L left,
- M middle,
- R right
Creates a Triple with the given left, middle and right values.
Implementation
Triple(this.left, this.middle, this.right): fields = List.unmodifiable([left, middle, right]);