lazyEval method

LazyNumber lazyEval(
  1. List<LazyNumber> lazyParams
)
override

Lazily evaluate this function.

lazyParams - The accepted parameters. Returns the lazy result of this function.

Implementation

LazyNumber lazyEval(final List<LazyNumber> lazyParams) {
  return _LazyNumberImpl(this, lazyParams);
}