File: src/lib/point.coffee
###*
number with id
@class Point
@module interval-tree2
###
class Point
###*
@constructor
@param {Number} val number
@param {Number|String} id id
###
constructor: (@val, @id) ->
module.exports = Point
