Skip to content

Instantly share code, notes, and snippets.

@gfredericks
Created March 7, 2015 22:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gfredericks/aa3d1f825b19f2d35bc3 to your computer and use it in GitHub Desktop.
Save gfredericks/aa3d1f825b19f2d35bc3 to your computer and use it in GitHub Desktop.
$ grep unchecked_multiply clojure/lang/Numbers.java
static public long unchecked_multiply(long x, long y){return x * y;}
static public Number unchecked_multiply(Object x, Object y){return multiply(x,y);}
static public double unchecked_multiply(double x, double y){return multiply(x,y);}
static public double unchecked_multiply(double x, Object y){return multiply(x,y);}
static public double unchecked_multiply(Object x, double y){return multiply(x,y);}
static public double unchecked_multiply(double x, long y){return multiply(x,y);}
static public double unchecked_multiply(long x, double y){return multiply(x,y);}
static public Number unchecked_multiply(long x, Object y){return multiply(x,y);}
static public Number unchecked_multiply(Object x, long y){return multiply(x,y);}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment