summaryrefslogtreecommitdiff
path: root/docs/examples/userguide/memoryviews/view_string.pyx
blob: 7aace3ea516cc11eae09880531de418077082b61 (plain)
1
2
3
4
5
6
7
8
9
cdef bint is_y_in(const unsigned char[:] string_view):
    cdef int i
    for i in range(string_view.shape[0]):
        if string_view[i] == b'y':
            return True
    return False

print(is_y_in(b'hello world'))   # False
print(is_y_in(b'hello Cython'))  # True