Copyright 2008 - 2009 Tony Morris, Runar Bjarnason, Tom Adams, Brad Clow, Ricky Clarkson, Nick Partridge, Jason Zaugg

This software is released under an open source BSD licence.

fj.function
Class Longs

java.lang.Object
  extended by fj.function.Longs

public final class Longs
extends Object

Curried functions over Longs.


Field Summary
static F<Long,Long> abs
          Absolute value.
static F<Long,F<Long,Long>> add
          Curried Long addition.
static F<Long,F<Long,Long>> multiply
          Curried Long multiplication.
static F<Long,Long> negate
          Negation.
static F<Long,F<Long,Long>> remainder
          Remainder.
static F<Long,F<Long,Long>> subtract
          Curried Long subtraction.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

add

public static final F<Long,F<Long,Long>> add
Curried Long addition.


multiply

public static final F<Long,F<Long,Long>> multiply
Curried Long multiplication.


subtract

public static final F<Long,F<Long,Long>> subtract
Curried Long subtraction.


negate

public static final F<Long,Long> negate
Negation.


abs

public static final F<Long,Long> abs
Absolute value.


remainder

public static final F<Long,F<Long,Long>> remainder
Remainder.


Copyright 2008 - 2009 Tony Morris, Runar Bjarnason, Tom Adams, Brad Clow, Ricky Clarkson, Nick Partridge, Jason Zaugg

This software is released under an open source BSD licence.