* of applying the first one.
*/
public static <T> LongToDouble compoundOp
(final LongToObject<? extends T> first,
final ObjectToDouble<? super T> second) {
return new LongToDouble() {
public final double op(long t) { return second.op(first.op(t)); }
};
}