Skip to content

Instantly share code, notes, and snippets.

@prystupa
Last active December 10, 2015 01:38
Show Gist options
  • Save prystupa/4360289 to your computer and use it in GitHub Desktop.
Save prystupa/4360289 to your computer and use it in GitHub Desktop.
class OrderBook(val side: Side, orderTypes: (Order => OrderType)) {
def add(order: Order) = throw new NotImplementedError()
def orders(): List[Order] = throw new NotImplementedError()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment