From 7e03da94e8ec8cbcc0e00229da2d2db3847c6dae Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Tue, 11 Feb 2025 05:12:24 +0100 Subject: [PATCH] Add `isSliceOf` to `arsd.core` --- core.d | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/core.d b/core.d index cde30eb..f7fe75f 100644 --- a/core.d +++ b/core.d @@ -271,6 +271,55 @@ auto ref T castTo(T, S)(auto ref S v) { /// alias typeCast = castTo; +/++ + Determines whether `needle` is a slice of `haystack`. + + History: + Added on February 11, 2025. + +/ +bool isSliceOf(T1, T2)(scope const(T1)[] needle, scope const(T2)[] haystack) @trusted pure nothrow @nogc { + return ( + needle.ptr >= haystack.ptr + && ((needle.ptr + needle.length) <= (haystack.ptr + haystack.length)) + ); +} + +@safe unittest { + string s0 = "01234"; + const(char)[] s1 = s0[1 .. $]; + const(void)[] s2 = s1.castTo!(const(void)[]); + string s3 = s1.idup; + + assert( s0.isSliceOf(s0)); + assert( s1.isSliceOf(s0)); + assert( s2.isSliceOf(s0)); + assert(!s3.isSliceOf(s0)); + + assert(!s0.isSliceOf(s1)); + assert( s1.isSliceOf(s1)); + assert( s2.isSliceOf(s1)); + assert(!s3.isSliceOf(s1)); + + assert(!s0.isSliceOf(s2)); + assert( s1.isSliceOf(s2)); + assert( s2.isSliceOf(s2)); + assert(!s3.isSliceOf(s2)); + + assert(!s0.isSliceOf(s3)); + assert(!s1.isSliceOf(s3)); + assert(!s2.isSliceOf(s3)); + assert( s3.isSliceOf(s3)); + + assert(s1.length == 4); + assert(s1[0 .. 0].isSliceOf(s1)); + assert(s1[0 .. 1].isSliceOf(s1)); + assert(s1[1 .. 2].isSliceOf(s1)); + assert(s1[1 .. 3].isSliceOf(s1)); + assert(s1[1 .. $].isSliceOf(s1)); + assert(s1[$ .. $].isSliceOf(s1)); +} + + /++ Does math as a 64 bit number, but saturates at int.min and int.max when converting back to a 32 bit int.