Ejemplo n.º 1
0
char str::operator[](pythran_long_t const &m) const
{
    return this->fast(m.get_si());
}
Ejemplo n.º 2
0
 char str::operator[](pythran_long_t const &m) const
 {
   return (*this)[m.get_si()];
 }
Ejemplo n.º 3
0
char str::fast(pythran_long_t const &m) const
{
    return (*this)[m.get_si()];
}