class EntityIterator
  constructor: (@entity) ->

  next: ->
    unless @hasNext()
      null

  hasNext: ->
    false

  rewind: ->
    @entity

  current: ->
    @entity

module.exports = EntityIterator