Skip to content

Instantly share code, notes, and snippets.

@johntbush
Created April 9, 2014 04:54
Show Gist options
  • Save johntbush/10227229 to your computer and use it in GitHub Desktop.
Save johntbush/10227229 to your computer and use it in GitHub Desktop.
implicit methods
class JoinUrlMethod(meeting:Meeting) {
def joinUrl()(implicit user:User) : String = {
MeetingManager.joinMeeting(meeting, user)
}
}
object Conversions {
implicit def meetingWithJoinUrl(meeting:Meeting) = new JoinUrlMethod(meeting)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment