Flowdock
method

apply_mapping

Importance_0
v2.3.8 - Show latest stable - 0 notes - Class: ActiveSupport::Multibyte::Chars
apply_mapping(mapping) protected

No documentation

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

Hide source
# File activesupport/lib/active_support/multibyte/chars.rb, line 691
        def apply_mapping(mapping) #:nodoc:
          chars(self.class.u_unpack(@wrapped_string).map do |codepoint|
            cp = UCD.codepoints[codepoint]
            if cp and (ncp = cp.send(mapping)) and ncp > 0
              ncp
            else
              codepoint
            end
          end.pack('U*'))
        end
Register or log in to add new notes.