1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
|
# mode: run
# tag: cpp, cpp20, no-cpp-locals, span
# cython: language_level=3
from cython.operator cimport dereference as deref
from cython.operator cimport preincrement as inc
from libcpp.span cimport dynamic_extent, span
from libcpp.utility cimport move
from libcpp.vector cimport vector
def test_span_construction_iterator_count(vals):
"""
>>> test_span_construction_iterator_count([0, 1, 2, 3])
[0, 1, 2, 3]
"""
cdef vector[int] vec
for v in vals:
vec.push_back(v)
cdef span[int] s = span[int](vec.data(), vec.size())
return [val for val in s]
def test_span_construction_iterator_iterator(vals):
"""
>>> test_span_construction_iterator_iterator([0, 1, 2, 3])
[0, 1, 2, 3]
"""
cdef vector[int] vec
for v in vals:
vec.push_back(v)
cdef span[int] s = span[int](vec.data(), vec.data() + vec.size())
return [val for val in s]
def test_span_construction_range(vals):
"""
>>> test_span_construction_range([0, 1, 2, 3])
[0, 1, 2, 3]
"""
# construct the vector
cdef vector[int] vec
for v in vals:
vec.push_back(v)
cdef span[int] s = span[int](vec)
return [val for val in s]
def test_span_data(vals):
"""
>>> test_span_data([0, 1, 2, 3])
True
>>> test_span_data([1.25])
True
"""
cdef vector[double] vec
for v in vals:
vec.push_back(v)
cdef span[double] s = span[double](vec.data(), vec.size())
return vec.data() == s.data()
def test_span_empty(vals):
"""
>>> test_span_empty([])
True
>>> test_span_empty([0, 1])
False
"""
cdef vector[double] vec
for v in vals:
vec.push_back(v)
cdef span[double] s = span[double](vec.data(), vec.size())
return s.empty()
def test_span_extent():
"""
>>> test_span_extent()
True
"""
cdef span[int] s = span[int]()
return s.extent == dynamic_extent
def test_span_first_last(vals, n):
"""
>>> test_span_first_last([0, 1, 2, 3], 2)
([0, 1], [2, 3])
>>> test_span_first_last([0, 1, 2, 3], 0)
([], [])
"""
cdef vector[int] vec
for v in vals:
vec.push_back(v)
cdef span[int] s = span[int](vec)
return [val for val in s.first(n)], [val for val in s.last(n)]
def test_span_front_back(vals):
"""
>>> test_span_front_back([0, 1, 2, 3])
(0.0, 3.0)
>>> test_span_front_back([1.25])
(1.25, 1.25)
"""
cdef vector[double] vec
for v in vals:
vec.push_back(v)
cdef span[double] s = span[double](vec)
return s.front(), s.back()
def test_span_index(vals):
"""
>>> test_span_index([0, 1, 2, 3])
(0.0, 3.0)
>>> test_span_index([1.25])
(1.25, 1.25)
"""
cdef vector[double] vec
for v in vals:
vec.push_back(v)
cdef span[double] s = span[double](vec)
return s[0], s[s.size() - 1]
def test_span_reverse_iteration(vals):
"""
>>> test_span_reverse_iteration([1, 2, 4, 8])
8
4
2
1
"""
cdef vector[int] vec
for v in vals:
vec.push_back(v)
cdef span[int] s = span[int](vec)
it = s.rbegin()
while it != s.rend():
print(deref(it))
inc(it)
def test_span_subspan(vals, offset):
"""
>>> test_span_subspan([1, 2, 4, 8], 2)
[4, 8]
>>> test_span_subspan([1, 2, 4, 8], 1)
[2, 4, 8]
"""
cdef vector[int] vec
for v in vals:
vec.push_back(v)
cdef span[int] s = span[int](vec)
return [val for val in s.subspan(offset)]
def test_span_subspan_count(vals, offset, count):
"""
>>> test_span_subspan_count([1, 2, 4, 8], 2, 1)
[4]
>>> test_span_subspan_count([1, 2, 4, 8], 1, 2)
[2, 4]
"""
cdef vector[int] vec
for v in vals:
vec.push_back(v)
cdef span[int] s = span[int](vec)
return [val for val in s.subspan(offset, count)]
|