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...")
 
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..100.withinlimits(2..3)
 +
 
 +
2  3
 +
 
 +
# 543..1245.withinlimits(700..900)
 +
700 701
 +
 
 +
 
 +
==See Also==
 +
*[[Array.random()|Random]]
 +
*[[Array.deal()|Deal]]
 +
*[[Array.allslices() | AllSlices]]

Revision as of 00:31, 16 April 2020

Array.withinlimits(LimitArray, IncludeEdges)

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

2 3

  1. 543..1245.withinlimits(700..900)
700 701


See Also