예제 #1
0
파일: tuple.hpp 프로젝트: leiwu/shedskin
template<class T> inline T tuple2<T, T>::__getfast__(__ss_int i) {
    i = __wrap(this, i);
    return this->units[i];
}
예제 #2
0
파일: tuple.hpp 프로젝트: leiwu/shedskin
template<class T> T tuple2<T, T>::__getitem__(__ss_int i) {
    i = __wrap(this, i);
    return units[i];
}
예제 #3
0
파일: str.hpp 프로젝트: GINK03/shedskin
inline str *str::__getfast__(__ss_int i) {
    i = __wrap(this, i);
    return __char_cache[((unsigned char)(unit[i]))];
}