C++ Programming/Half open

From testwiki
Revision as of 20:50, 22 November 2006 by imported>Herbythyme (clean up and alpha cat, Replaced: Category:C++ programming language{{SUBPAGENAME}} (AWB))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

A range [a,b) or (a,b] is half-open in that it is "open" at one end (doesn't include its limit point) and "closed" at the other (does include its limit point).

[a,b) is defined as {x|ax<b}

These terms have most meaning in a topological space, but are also useful in computer science.