Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 1.98 KB

File metadata and controls

34 lines (23 loc) · 1.98 KB

wildcard()

A wildcard() schema type represents one or more headers that are otherwise unspecified.

It may take an int indicating the number of headers or a * to indicate any number of headers.

When wildcard() has no args it represents any number of headers, same as "*".

Note that wildcard() can represent 0 headers. Essentially, a wildcard by itself will not invalidate a document unless it defines a specific number of headers that are not found.

Data signatures
wildcard( , ... )
wildcard( $${\color{green}int}$$ ǁ $${\color{green}str}$$ ǁ $${\color{green}None}$$ ǁ $${\color{green}Any}$$ )
Call signatures
wildcard( , ... )
wildcard( Term )
Purpose Value
Main focus wildcard() determines if lines match
Type Wildcard is a line() schema type
Context Qualifier
Match qualifiers onmatch
Value qualifiers onmatch

[Back to index]