horvat
Deferred is not the same as lazy!
Lazy and eager execution is not the same as deferred or immediate. An operator is deferred if it only pulls the input when iterated. Select pulls nothing on this line. It is deferred. Iterating a deferred operator is where lazy operators differ from eager ones. A lazy operator will pull the minimum of inputs required to produce each item. Select…
Read More »