Within: Difference between revisions

From The K Language Wiki
Content added Content deleted
("Add all appropriate categories to each verb")
("Paragraph cleanup")
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:


The '''within''' primitive checks if an integer/character <code>i</code> is in the range defined by a two element vector <code>a</code>.
The '''within''' primitive checks if an integer/character <code>i</code> is in the range defined by a two element vector <code>a</code>.



== K7 ==
== K7 ==
Line 23: Line 22:
== References ==
== References ==


[[Category:Named verbs]]
[[Category:Verbs]]
[[Category:Verbs]]
[[Category:Named verbs]]
[[Category:Primitives]]
[[Category:Primitives]]

Latest revision as of 07:59, 9 July 2022

Within
i within a

The within primitive checks if an integer/character i is in the range defined by a two element vector a.

K7[edit]

In K7+, the range is inclusive of first element and exclusive of the second element.

 1 within 1 3
1
 3 within 1 3
0
 "a" within "az"
1
 "a" within "cz"
0

K4[edit]

In K4[1], the range is inclusive of both the first and the second element.

References[edit]