class BinData::IO::Transform

def prepend_to_chain(chain)

Returns self (the new head of chain).

Prepends this transform to the given +chain+.
def prepend_to_chain(chain)
  @chain_io = chain
  before_transform
  self
end