Difference between revisions of "Array.withinlimits()"

From ZCubes Wiki
Jump to navigation Jump to search
(Created page with "* << Z3 Home * Z3 Language Documentation * Z%5E3_Array_Manipulation_Member_Functions | Listing of Z3 Array Manipulation Member F...")
 
 
(3 intermediate revisions by the same user not shown)
Line 3: Line 3:
 
*[[ Z%5E3_Array_Manipulation_Member_Functions | Listing of Z3 Array Manipulation Member Functions]]
 
*[[ Z%5E3_Array_Manipulation_Member_Functions | Listing of Z3 Array Manipulation Member Functions]]
  
==Array.withinlimits()==
+
==Array.withinlimits(LimitArray, IncludeEdges)==
 +
1. 1..100.withinlimits(2..3)
 +
 
 +
2  3
 +
 
 +
2. 543..1245.withinlimits(700..900)
 +
 
 +
700 701
 +
 
 +
==See Also==
 +
*[[Array.random()|Random]]
 +
*[[Array.deal()|Deal]]
 +
*[[Array.allslices() | AllSlices]]

Latest revision as of 04:07, 14 May 2020

Array.withinlimits(LimitArray, IncludeEdges)

1. 1..100.withinlimits(2..3)

2 3

2. 543..1245.withinlimits(700..900)

700 701

See Also