Difference between revisions of "Colors.subtract"
From ComputerCraft Wiki
m (Fix wrong API name) |
(Make description match API table, use type template) |
||
Line 2: | Line 2: | ||
{{Function | {{Function | ||
|name=colors.subtract | |name=colors.subtract | ||
− | |args= | + | |args={{Type|int}} colors, {{Type|int}} color1, {{Type|int}} color2, … |
|api=colors | |api=colors | ||
− | |returns= | + | |returns={{Type|int}} the set <var>colors</var> after removing sets <var>color1</var>, <var>color2</var>, … |
|addon=ComputerCraft | |addon=ComputerCraft | ||
− | |desc= | + | |desc=Removes one or more colors (or sets of colors) from an initial set; each parameter beyond the first may be a single color or may be a set of colors (in the latter case, all colors in the set are removed from the original set). |
|examples= | |examples= | ||
{{Example | {{Example |
Revision as of 14:23, 22 April 2013
Function colors.subtract | |
Removes one or more colors (or sets of colors) from an initial set; each parameter beyond the first may be a single color or may be a set of colors (in the latter case, all colors in the set are removed from the original set). | |
Syntax | colors.subtract(int colors, int color1, int color2, …) |
Returns | int the set colors after removing sets color1, color2, … |
Part of | ComputerCraft |
API | colors |