Skip to content

Instantly share code, notes, and snippets.

@jordanlewis
Created May 1, 2012 05:38
Show Gist options
  • Save jordanlewis/2565386 to your computer and use it in GitHub Desktop.
Save jordanlewis/2565386 to your computer and use it in GitHub Desktop.
PFDS Set Trait
trait Set[T] {
def insert(x: T): Set[T]
def member(x: T): Boolean
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment