iterator.bmx 231 B

123456789101112131415161718
  1. Rem
  2. bbdoc: Iterable interface
  3. EndRem
  4. Interface IIterable<T>
  5. Method GetIterator:IIterator<T>()
  6. End Interface
  7. Rem
  8. bbdoc: Iterator interface
  9. EndRem
  10. Interface IIterator<T>
  11. Method Current:T()
  12. Method MoveNext:Int()
  13. End Interface