Package ome.util
Interface CBlock<E>
-
- All Known Implementing Classes:
IdBlock
public interface CBlock<E>
Block template used to "C"ollect the results of some function called on eachIObject
in a collection. TheCBlock
can be used to "map"IObject
inputs to arbitrary outputs. All collection valued fields on model objects have a method that will scan the collection and apply the block of code. For example,Image.collectPixels(CBlock)
- Since:
- 3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description E
call(IObject object)
invoke this block.
-