class NullIterator
  constructor: () ->

  next: ->
    null

  hasNext: ->
    false

  rewind: ->
    null

  current: ->
    null

module.exports = NullIterator