package fj; /** * A product-3. * * @version %build.number% */ public abstract class P3 { /** * Access the first element of the product. * * @return The first element of the product. */ public abstract A _1(); /** * Access the second element of the product. * * @return The second element of the product. */ public abstract B _2(); /** * Access the third element of the product. * * @return The third element of the product. */ public abstract C _3(); /** * Map the first element of the product. * * @param f The function to map with. * @return A product with the given function applied. */ public final P3 map1(final F f) { return new P3() { public X _1() { return f.f(P3.this._1()); } public B _2() { return P3.this._2(); } public C _3() { return P3.this._3(); } }; } /** * Map the second element of the product. * * @param f The function to map with. * @return A product with the given function applied. */ public final P3 map2(final F f) { return new P3() { public A _1() { return P3.this._1(); } public X _2() { return f.f(P3.this._2()); } public C _3() { return P3.this._3(); } }; } /** * Map the third element of the product. * * @param f The function to map with. * @return A product with the given function applied. */ public final P3 map3(final F f) { return new P3() { public A _1() { return P3.this._1(); } public B _2() { return P3.this._2(); } public X _3() { return f.f(P3.this._3()); } }; } /** * Returns the 1-product projection over the first element. * * @return the 1-product projection over the first element. */ public final P1 _1_() { return P3.__1().lazy().f(this); } /** * Returns the 1-product projection over the second element. * * @return the 1-product projection over the second element. */ public final P1 _2_() { return P3.__2().lazy().f(this); } /** * Returns the 1-product projection over the third element. * * @return the 1-product projection over the third element. */ public final P1 _3_() { return P3.__3().lazy().f(this); } /** * Provides a memoising P3 that remembers its values. * * @return A P3 that calls this P3 once for any given element and remembers the value for subsequent calls. */ public final P3 memo() { return new P3() { private final P1 a = _1_().memo(); private final P1 b = _2_().memo(); private final P1 c = _3_().memo(); public A _1() { return a._1(); } public B _2() { return b._1(); } public C _3() { return c._1(); } }; } /** * Returns a function that returns the first element of a product. * * @return A function that returns the first element of a product. */ public static F, A> __1() { return new F, A>() { public A f(final P3 p) { return p._1(); } }; } /** * Returns a function that returns the second element of a product. * * @return A function that returns the second element of a product. */ public static F, B> __2() { return new F, B>() { public B f(final P3 p) { return p._2(); } }; } /** * Returns a function that returns the third element of a product. * * @return A function that returns the third element of a product. */ public static F, C> __3() { return new F, C>() { public C f(final P3 p) { return p._3(); } }; } }