▼
Unstable
1
Guidelines for developing
unstable
libraries
2
Bytes
3
Contracts
4
Exceptions
5
Lists
6
Net
7
Path
8
Strings
9
Structs
10
Syntax
11
Anaphoric Contracts
12
Finding Mutated Variables
13
Find
14
Interface-
Oriented Programming for Classes
15
Sequences
16
Hash Tables
17
Match
18
GUI libraries
On this page:
non-
empty-
string/
c
port-
number?
path-
element?
top
← prev
up
next →
3
Contracts
(
require
unstable/contract
)
non-empty-string/c
:
contract?
Contract for non-empty strings.
port-number?
:
contract?
Equivalent to
(
between/c
1
65535
)
.
path-element?
:
contract?
Equivalent to
(
or/c
path-string?
(
symbols
'
up
'
same
)
)
.
top
← prev
up
next →