map<D extends Comparable<D>> method

  1. @override
UnboundedBound<D> map<D extends Comparable<D>>(
  1. D mapper(
    1. C
    )
)
override

Maps the value of this bound using mapper.

Implementation

@override
UnboundedBound<D> map<D extends Comparable<D>>(D Function(C) mapper) =>
    const UnboundedBound();