operator / method

Map operator /(
  1. dynamic f(
    1. Map
    )
)

Places the left-side Map x into right-side Function f as single argument. Returns the source x.

Implementation

Map operator / (Function(Map) f) {
  f(this);
  return this;
}