@@ -11,18 +11,21 @@ import FillArrays
1111 @test static (2 ) isa MeasureBase. IntegerLike
1212 @test true isa MeasureBase. IntegerLike
1313 @test static (true ) isa MeasureBase. IntegerLike
14-
14+
1515 @test @inferred (MeasureBase. one_to (7 )) isa Base. OneTo
1616 @test @inferred (MeasureBase. one_to (7 )) == 1 : 7
1717 @test @inferred (MeasureBase. one_to (static (7 ))) isa Static. SOneTo
1818 @test @inferred (MeasureBase. one_to (static (7 ))) == static (1 ): static (7 )
1919
2020 @test @inferred (MeasureBase. fill_with (4.2 , (7 ,))) == FillArrays. Fill (4.2 , 7 )
2121 @test @inferred (MeasureBase. fill_with (4.2 , (static (7 ),))) == FillArrays. Fill (4.2 , 7 )
22- @test @inferred (MeasureBase. fill_with (4.2 , (3 , static (7 )))) == FillArrays. Fill (4.2 , 3 , 7 )
22+ @test @inferred (MeasureBase. fill_with (4.2 , (3 , static (7 )))) ==
23+ FillArrays. Fill (4.2 , 3 , 7 )
2324 @test @inferred (MeasureBase. fill_with (4.2 , (3 : 7 ,))) == FillArrays. Fill (4.2 , (3 : 7 ,))
24- @test @inferred (MeasureBase. fill_with (4.2 , (static (3 ): static (7 ),))) == FillArrays. Fill (4.2 , (3 : 7 ,))
25- @test @inferred (MeasureBase. fill_with (4.2 , (3 : 7 , static (2 ): static (5 )))) == FillArrays. Fill (4.2 , (3 : 7 , 2 : 5 ))
25+ @test @inferred (MeasureBase. fill_with (4.2 , (static (3 ): static (7 ),))) ==
26+ FillArrays. Fill (4.2 , (3 : 7 ,))
27+ @test @inferred (MeasureBase. fill_with (4.2 , (3 : 7 , static (2 ): static (5 )))) ==
28+ FillArrays. Fill (4.2 , (3 : 7 , 2 : 5 ))
2629
2730 @test MeasureBase. maybestatic_length (MeasureBase. one_to (7 )) isa Int
2831 @test MeasureBase. maybestatic_length (MeasureBase. one_to (7 )) == 7
0 commit comments