예제 #1
0
파일: index.hpp 프로젝트: artas360/pythran
 long index(types::list<T> &seq, T const &x)
 {
   long index_value = seq.index(x);
   if (index_value == seq.size())
     throw types::ValueError(__builtin__::anonymous::str(x) +
                             " is not in list");
   return index_value;
 }
예제 #2
0
파일: index.hpp 프로젝트: OnlySang/pythran
 long index(types::list<T> &seq, T const& x) {
     return seq.index(x);
 }