Uses of Interface
net.metanotion.functor.Block

Packages that use Block
net.metanotion.functor   
net.metanotion.text   
net.metanotion.util   
 

Uses of Block in net.metanotion.functor
 

Classes in net.metanotion.functor that implement Block
 class Apply<E,E1>
           
 class Chain<V1,V2,V3>
           
 class Explode<B>
           
 class Filter<L extends Iterable,E>
           
 class Identity<I>
           
 class IteratorIterable<V>
           
 

Methods in net.metanotion.functor that return Block
static
<V> Block<V,java.util.Iterator>
IteratorIterable.chain(Block<V,? extends java.lang.Iterable> block)
           
 

Methods in net.metanotion.functor with parameters of type Block
static
<V> Block<V,java.util.Iterator>
IteratorIterable.chain(Block<V,? extends java.lang.Iterable> block)
           
 

Constructors in net.metanotion.functor with parameters of type Block
Apply(Block<? super E,? extends E1> functor)
           
BlockThunk(Block<? super V1,? extends V2> functor, Thunk<? super V1> constant)
           
Chain(Block<? super V2,? extends V3> b1, Block<? super V1,? extends V2> b2)
           
Chain(Block<? super V2,? extends V3> b1, Block<? super V1,? extends V2> b2)
           
IteratorApplicator(java.lang.Iterable<E1> i, Block<E1,E> a)
           
IteratorApplicator(java.util.Iterator<E1> i, Block<E1,E> a)
           
 

Uses of Block in net.metanotion.text
 

Classes in net.metanotion.text that implement Block
 class FormatList<V extends List>
           
 class JavaTextFormatList
           
 

Uses of Block in net.metanotion.util
 

Methods in net.metanotion.util with parameters of type Block
static
<C,I> I
Using.doBlock(C resource, Block<C,I> block)
           
static
<C,I> I
Using.doBlock(GetResource<C> resource, Block<C,I> block)