map() protected method

Apply mapping (RFC 3454 section 3)
protected map ( $codepoints )
Esempio n. 1
0
 /**
  * Apply mapping (RFC 3454 section 3)
  */
 protected function map($codepoints)
 {
     $codepoints = parent::map($codepoints);
     $codepoints = static::applyMappingTable($codepoints, 'static::saslprepMapUnicodeSpaceToSpace');
     return $codepoints;
 }