class IterableSequence

class IterableSequence

lib/iterable_sequence.tya:2

IterableSequence provides the iterable_sequence standard library API.

Source
# IterableSequence provides the iterable_sequence standard library API.
class IterableSequence implements Sequence
  # IterableSequence.source stores instance state.
  # @type Nil
  source: nil

  # IterableSequence.initialize provides the iterable_sequence standard library operation.
  # @param source String source value.
  # @return Self the initialized object.
  initialize: source ->
    self.source = source

Instance Variables

source

IterableSequence.source

lib/iterable_sequence.tya:5

IterableSequence.source stores instance state.

Source
  # IterableSequence.source stores instance state.
  # @type Nil
  source: nil

Methods

initialize

IterableSequence.initialize(source)

lib/iterable_sequence.tya:10

IterableSequence.initialize provides the iterable_sequence standard library operation.

Source
  # IterableSequence.initialize provides the iterable_sequence standard library operation.
  # @param source String source value.
  # @return Self the initialized object.
  initialize: source ->
    self.source = source