getL method

a getL(
  1. a right(
    1. b
    )
)
inherited

Handle the right value with right and return the left A value.

Implementation

a getL(a Function(b) right) => _self.visit(left: _identity, right: right);