コード例 #1
0
            public void Crop_8ValuesWithThreshold_ExpectOnlyValueAboveThreshold()
            {
                var bytes = new byte[] { };

                ArrayX.Crop(ref bytes, b => b > 3);
                Assert.Equal(Array.Empty <byte>(), bytes);
            }
コード例 #2
0
            public void Crop_0ValuesWithThreshold_ExpectOnlyValueAboveThreshold()
            {
                var bytes = new byte[] { 4, 3, 5 };

                ArrayX.Crop(ref bytes, b => b > 3);

                Assert.Equal(new byte[] { 4, 5 }, bytes);
            }