File tree Expand file tree Collapse file tree 5 files changed +8
-6
lines changed Expand file tree Collapse file tree 5 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ Dict\associate
109
109
Dict\cast_clear_legacy_array_mark
110
110
INSERT Dict\cast_clear_legacy_array_mark(
111
111
INSERT )
112
- (function(KeyedTraversable<Tk, Tv> $x): ~ dict<Tk, Tv>)
112
+ (function(KeyedTraversable<Tk, Tv> $x): dict<Tk, Tv>)
113
113
Dict\chunk
114
114
INSERT Dict\chunk(
115
115
INSERT , ${1:\$size})
@@ -329,7 +329,7 @@ Str\join
329
329
Vec\cast_clear_legacy_array_mark
330
330
INSERT Vec\cast_clear_legacy_array_mark(
331
331
INSERT )
332
- (function(Traversable<T> $x): ~ vec<T>)
332
+ (function(Traversable<T> $x): vec<T>)
333
333
Vec\chunk
334
334
INSERT Vec\chunk(
335
335
INSERT , ${1:\$size})
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ Dict\associate
109
109
Dict\cast_clear_legacy_array_mark
110
110
INSERT Dict\cast_clear_legacy_array_mark(
111
111
INSERT )
112
- (function(KeyedTraversable<Tk, Tv> $x): ~ dict<Tk, Tv>)
112
+ (function(KeyedTraversable<Tk, Tv> $x): dict<Tk, Tv>)
113
113
Dict\chunk
114
114
INSERT Dict\chunk(
115
115
INSERT , ${1:\$size})
@@ -329,7 +329,7 @@ Str\join
329
329
Vec\cast_clear_legacy_array_mark
330
330
INSERT Vec\cast_clear_legacy_array_mark(
331
331
INSERT )
332
- (function(Traversable<T> $x): ~ vec<T>)
332
+ (function(Traversable<T> $x): vec<T>)
333
333
Vec\chunk
334
334
INSERT Vec\chunk(
335
335
INSERT , ${1:\$size})
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ Dict\associate
109
109
Dict\cast_clear_legacy_array_mark
110
110
INSERT Dict\cast_clear_legacy_array_mark(
111
111
INSERT )
112
- (function(KeyedTraversable<Tk, Tv> $x): ~ dict<Tk, Tv>)
112
+ (function(KeyedTraversable<Tk, Tv> $x): dict<Tk, Tv>)
113
113
Dict\chunk
114
114
INSERT Dict\chunk(
115
115
INSERT , ${1:\$size})
@@ -325,7 +325,7 @@ Str\join
325
325
Vec\cast_clear_legacy_array_mark
326
326
INSERT Vec\cast_clear_legacy_array_mark(
327
327
INSERT )
328
- (function(Traversable<T> $x): ~ vec<T>)
328
+ (function(Traversable<T> $x): vec<T>)
329
329
Vec\chunk
330
330
INSERT Vec\chunk(
331
331
INSERT , ${1:\$size})
Original file line number Diff line number Diff line change 14
14
* Casts the given traversable to a dict, resetting the legacy array mark
15
15
* if applicable.
16
16
*/
17
+ <<__NoAutoLikes >>
17
18
function cast_clear_legacy_array_mark <Tk as arraykey , Tv >(
18
19
KeyedTraversable <Tk , Tv > $x ,
19
20
)[]: dict <Tk , Tv > {
Original file line number Diff line number Diff line change 14
14
* Casts the given traversable to a vec, resetting the legacy array mark
15
15
* if applicable.
16
16
*/
17
+ <<__NoAutoLikes >>
17
18
function cast_clear_legacy_array_mark <T >(
18
19
Traversable <T > $x ,
19
20
)[]: vec <T > {
You can’t perform that action at this time.
0 commit comments