File tree 4 files changed +55
-57
lines changed
4 files changed +55
-57
lines changed Original file line number Diff line number Diff line change @@ -3329,7 +3329,7 @@ int String::find(const char *p_str, int p_from) const {
3329
3329
}
3330
3330
3331
3331
int String::find_char (char32_t p_char, int p_from) const {
3332
- return _cowdata .find (p_char, p_from);
3332
+ return span () .find (p_char, p_from);
3333
3333
}
3334
3334
3335
3335
int String::findmk (const Vector<String> &p_keys, int p_from, int *r_key) const {
@@ -3566,7 +3566,7 @@ int String::rfind(const char *p_str, int p_from) const {
3566
3566
}
3567
3567
3568
3568
int String::rfind_char (char32_t p_char, int p_from) const {
3569
- return _cowdata .rfind (p_char, p_from);
3569
+ return span () .rfind (p_char, p_from);
3570
3570
}
3571
3571
3572
3572
int String::rfindn (const String &p_str, int p_from) const {
Original file line number Diff line number Diff line change @@ -252,10 +252,6 @@ class CowData {
252
252
_FORCE_INLINE_ operator Span<T>() const { return Span<T>(ptr (), size ()); }
253
253
_FORCE_INLINE_ Span<T> span () const { return operator Span<T>(); }
254
254
255
- Size find (const T &p_val, Size p_from = 0 ) const ;
256
- Size rfind (const T &p_val, Size p_from = -1 ) const ;
257
- Size count (const T &p_val) const ;
258
-
259
255
_FORCE_INLINE_ CowData () {}
260
256
_FORCE_INLINE_ ~CowData () { _unref (); }
261
257
_FORCE_INLINE_ CowData (std::initializer_list<T> p_init);
@@ -430,54 +426,6 @@ Error CowData<T>::_realloc(Size p_alloc_size) {
430
426
return OK;
431
427
}
432
428
433
- template <typename T>
434
- typename CowData<T>::Size CowData<T>::find(const T &p_val, Size p_from) const {
435
- Size ret = -1 ;
436
-
437
- if (p_from < 0 || size () == 0 ) {
438
- return ret;
439
- }
440
-
441
- for (Size i = p_from; i < size (); i++) {
442
- if (get (i) == p_val) {
443
- ret = i;
444
- break ;
445
- }
446
- }
447
-
448
- return ret;
449
- }
450
-
451
- template <typename T>
452
- typename CowData<T>::Size CowData<T>::rfind(const T &p_val, Size p_from) const {
453
- const Size s = size ();
454
-
455
- if (p_from < 0 ) {
456
- p_from = s + p_from;
457
- }
458
- if (p_from < 0 || p_from >= s) {
459
- p_from = s - 1 ;
460
- }
461
-
462
- for (Size i = p_from; i >= 0 ; i--) {
463
- if (get (i) == p_val) {
464
- return i;
465
- }
466
- }
467
- return -1 ;
468
- }
469
-
470
- template <typename T>
471
- typename CowData<T>::Size CowData<T>::count(const T &p_val) const {
472
- Size amount = 0 ;
473
- for (Size i = 0 ; i < size (); i++) {
474
- if (get (i) == p_val) {
475
- amount++;
476
- }
477
- }
478
- return amount;
479
- }
480
-
481
429
template <typename T>
482
430
void CowData<T>::_ref(const CowData *p_from) {
483
431
_ref (*p_from);
Original file line number Diff line number Diff line change @@ -62,4 +62,54 @@ class Span {
62
62
63
63
_FORCE_INLINE_ constexpr const T *begin () const { return _ptr; }
64
64
_FORCE_INLINE_ constexpr const T *end () const { return _ptr + _len; }
65
+
66
+ // Algorithms.
67
+ constexpr int64_t find (const T &p_val, int64_t p_from = 0 ) const ;
68
+ constexpr int64_t rfind (const T &p_val, int64_t p_from = 0 ) const ;
69
+ constexpr uint64_t count (const T &p_val) const ;
65
70
};
71
+
72
+ template <typename T>
73
+ int64_t Span<T>::find(const T &p_val, int64_t p_from) const {
74
+ if (p_from < 0 || size () == 0 ) {
75
+ return -1 ;
76
+ }
77
+
78
+ for (uint64_t i = p_from; i < size (); i++) {
79
+ if (ptr ()[i] == p_val) {
80
+ return i;
81
+ }
82
+ }
83
+
84
+ return -1 ;
85
+ }
86
+
87
+ template <typename T>
88
+ int64_t Span<T>::rfind(const T &p_val, int64_t p_from) const {
89
+ const int64_t s = size ();
90
+
91
+ if (p_from < 0 ) {
92
+ p_from = s + p_from;
93
+ }
94
+ if (p_from < 0 || p_from >= s) {
95
+ p_from = s - 1 ;
96
+ }
97
+
98
+ for (int64_t i = p_from; i >= 0 ; i--) {
99
+ if (ptr ()[i] == p_val) {
100
+ return i;
101
+ }
102
+ }
103
+ return -1 ;
104
+ }
105
+
106
+ template <typename T>
107
+ uint64_t Span<T>::count(const T &p_val) const {
108
+ uint64_t amount = 0 ;
109
+ for (uint64_t i = 0 ; i < size (); i++) {
110
+ if (ptr ()[i] == p_val) {
111
+ amount++;
112
+ }
113
+ }
114
+ return amount;
115
+ }
Original file line number Diff line number Diff line change @@ -105,9 +105,9 @@ class Vector {
105
105
_FORCE_INLINE_ const T &operator [](Size p_index) const { return _cowdata.get (p_index); }
106
106
// Must take a copy instead of a reference (see GH-31736).
107
107
Error insert (Size p_pos, T p_val) { return _cowdata.insert (p_pos, p_val); }
108
- Size find (const T &p_val, Size p_from = 0 ) const { return _cowdata .find (p_val, p_from); }
109
- Size rfind (const T &p_val, Size p_from = -1 ) const { return _cowdata .rfind (p_val, p_from); }
110
- Size count (const T &p_val) const { return _cowdata .count (p_val); }
108
+ Size find (const T &p_val, Size p_from = 0 ) const { return span () .find (p_val, p_from); }
109
+ Size rfind (const T &p_val, Size p_from = -1 ) const { return span () .rfind (p_val, p_from); }
110
+ Size count (const T &p_val) const { return span () .count (p_val); }
111
111
112
112
// Must take a copy instead of a reference (see GH-31736).
113
113
void append_array (Vector<T> p_other);
You can’t perform that action at this time.
0 commit comments