Another map argument
lclass Cuber implements Function1
  {
l      public Object apply(Object x)
    {
    float num = ((Number)x). floatValue();
    return new Float(num*num*num);
    }
l    }

lUsage: map(new Cuber(), L)
ÒpublicÓ must
be explicit!