Flowdock
method

encode_unile

Importance_0
v1_9_2_180 - Show latest stable - 0 notes - Class: REXML::Encoding
encode_unile(content) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rexml/encodings/UNILE.rb, line 3
    def encode_unile content
      array_utf8 = content.unpack("U*")
      array_enc = []
      array_utf8.each do |num|
        if ((num>>16) > 0)
          array_enc << ??
          array_enc << 0
        else
          array_enc << (num & 0xFF)
          array_enc << (num >> 8)
        end
      end
      array_enc.pack('C*')
    end
Register or log in to add new notes.