Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 406 Bytes

File metadata and controls

7 lines (6 loc) · 406 Bytes

stdjava is a Go implementation of some of the Java-isms used when parsing the codebase

Currently, this includes:

  • A generic Ternary function that takes in a condition, and outputs one of the two results
  • Unsigned right shift (>>>= and >>>), which does right shifts, but fills the top bits with zeroes, instead of being sign-dependent
  • Java's string hashCode function
  • The Optional<T> type