Package groovyx.gpars.extra166y.Ops

Examples of groovyx.gpars.extra166y.Ops.LongToDouble


     * of applying the first one.
     */
    public static LongToDouble compoundOp
        (final LongOp first,
         final LongToDouble second) {
        return new LongToDouble() {
                public final double op(long t) { return second.op(first.op(t)); }
            };
    }
View Full Code Here


     * of applying the first one.
     */
    public static LongToDouble compoundOp
        (final LongToDouble first,
         final DoubleOp second) {
        return new LongToDouble() {
                public final double op(long t) { return second.op(first.op(t)); }
            };
    }
View Full Code Here

     * 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)); }
            };
    }
View Full Code Here

TOP

Related Classes of groovyx.gpars.extra166y.Ops.LongToDouble

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.