We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 931152d commit f2dd7a8Copy full SHA for f2dd7a8
source/mir/ndslice/slice.d
@@ -908,13 +908,13 @@ public:
908
///
909
auto lightImmutable()() scope return immutable @property
910
{
911
- return Slice!(LightImmutableOf!Iterator, N, kind)(_structure, _iterator.lightImmutable);
+ return Slice!(LightImmutableOf!Iterator, N, kind)(_structure, .lightImmutable(_iterator));
912
}
913
914
/// ditto
915
auto lightConst()() scope return const @property
916
917
- return Slice!(LightConstOf!Iterator, N, kind)(_structure, _iterator.lightConst);
+ return Slice!(LightConstOf!Iterator, N, kind)(_structure, .lightConst(_iterator));
918
919
920
0 commit comments