cords: fix arity.

locals-and-roots
Doug Coleman 2016-06-28 00:34:27 -07:00
parent b7e98407f8
commit 7f0e232125
3 changed files with 397 additions and 396 deletions

View File

@ -35,7 +35,8 @@ CONSTANT: janky-arities H{
`IMPORT 1 -- `GIR 1 -- `TEST 1 -- `SELECTOR 1 -- `SIMD-128 1 -- `QUALIFIED 1 --
`ALIAS 2 -- `ARITY 2 -- `C 2 -- `CONSTANT 2 -- `INSTANCE 2 -- `GENERIC 2 -- `PRIMITIVE 2 --
`MATH 2 -- `QUALIFIED-WITH 2 --
`MATH 2 -- `QUALIFIED-WITH 2 -- `SIMD-128-CORD 2 -- `HELP-ARRAY 2 -- `HELP-STRING 2 --
`HELP-BACKTICK 2 -- `HELP-2BACKTICKS 2 -- `HELP-3BACKTICKS 2 -- `HELP-BACKSLASH 2 --
`GENERIC# 3 -- `PIXEL-FORMAT-ATTRIBUTE-TABLE 3 -- `HOOK 3
}

View File

@ -79,18 +79,18 @@ FUNCTOR>
[ create-word-in (define-simd-128-cord) ] 2bi ;
SYNTAX: \ SIMD-128-CORD:
scan-word scan-token ";" expect define-simd-128-cord ;
scan-word scan-token define-simd-128-cord ;
PRIVATE>
COMPILE>
SIMD-128-CORD: char-16 char-32 ;
SIMD-128-CORD: uchar-16 uchar-32 ;
SIMD-128-CORD: short-8 short-16 ;
SIMD-128-CORD: ushort-8 ushort-16 ;
SIMD-128-CORD: int-4 int-8 ;
SIMD-128-CORD: uint-4 uint-8 ;
SIMD-128-CORD: longlong-2 longlong-4 ;
SIMD-128-CORD: ulonglong-2 ulonglong-4 ;
SIMD-128-CORD: float-4 float-8 ;
SIMD-128-CORD: double-2 double-4 ;
SIMD-128-CORD: char-16 char-32
SIMD-128-CORD: uchar-16 uchar-32
SIMD-128-CORD: short-8 short-16
SIMD-128-CORD: ushort-8 ushort-16
SIMD-128-CORD: int-4 int-8
SIMD-128-CORD: uint-4 uint-8
SIMD-128-CORD: longlong-2 longlong-4
SIMD-128-CORD: ulonglong-2 ulonglong-4
SIMD-128-CORD: float-4 float-8
SIMD-128-CORD: double-2 double-4

View File

@ -26,412 +26,412 @@ SYNTAX: \ ABOUT:
COMPILE<
SYNTAX: \ HELP-ARRAY:
scan-new-escaped scan-word ";" expect
scan-new-escaped scan-word
$[ \ } parse-until split-dashes >array _ prefix suffix! ] define-syntax ;
SYNTAX: \ HELP-STRING:
scan-new-escaped scan-word ";" expect
scan-new-escaped scan-word
$[ _ "\"" parse-multiline-string-new 2array suffix! ] define-syntax ;
SYNTAX: \ HELP-BACKTICK:
scan-new-escaped scan-word ";" expect
scan-new-escaped scan-word
$[ _ lexer get parse-spaceless-payload 2array suffix! ] define-syntax ;
SYNTAX: \ HELP-2BACKTICKS:
scan-new-escaped scan-word ";" expect
scan-new-escaped scan-word
$[ _ "``" parse-multiline-string-new 2array suffix! ] define-syntax ;
SYNTAX: \ HELP-3BACKTICKS:
scan-new-escaped scan-word ";" expect
scan-new-escaped scan-word
$[ _ "```" parse-multiline-string-new 2array suffix! ] define-syntax ;
SYNTAX: \ HELP-BACKSLASH:
scan-new-escaped scan-word ";" expect
scan-new-escaped scan-word
$[ _ scan-word <wrapper> 2array suffix! ] define-syntax ;
COMPILE>
HELP-ARRAY: \ $breadcrumbs{ $breadcrumbs ;
HELP-ARRAY: \ $class-description{ $class-description ;
HELP-ARRAY: \ $code{ $code ;
HELP-ARRAY: \ $complex-shuffle{ $complex-shuffle ;
HELP-ARRAY: \ $content{ $content ;
HELP-ARRAY: \ $contract{ $contract ;
HELP-ARRAY: \ $curious{ $curious ;
HELP-ARRAY: \ $definition{ $definition ;
HELP-ARRAY: \ $definition-icons{ $definition-icons ;
HELP-ARRAY: \ $deprecated{ $deprecated ;
HELP-ARRAY: \ $description{ $description ;
HELP-ARRAY: \ $emphasis{ $emphasis ;
HELP-ARRAY: \ $error-description{ $error-description ;
HELP-ARRAY: \ $errors{ $errors ;
HELP-ARRAY: \ $example{ $example ;
HELP-ARRAY: \ $examples{ $examples ;
HELP-ARRAY: \ $heading{ $heading ;
HELP-ARRAY: \ $image{ $image ;
HELP-ARRAY: \ $instance{ $instance ;
HELP-ARRAY: \ $io-error{ $io-error ;
HELP-ARRAY: \ $link{ $link ;
HELP-ARRAY: \ $links{ $links ;
HELP-ARRAY: \ $list{ $list ;
HELP-ARRAY: \ $long-link{ $long-link ;
HELP-ARRAY: \ $low-level-note{ $low-level-note ;
HELP-ARRAY: \ $markup-example{ $markup-example ;
HELP-ARRAY: \ $maybe{ $maybe ;
HELP-ARRAY: \ $methods{ $methods ;
HELP-ARRAY: \ $nl{ $nl ;
HELP-ARRAY: \ $notes{ $notes ;
HELP-ARRAY: \ $or{ $or ;
HELP-ARRAY: \ $parsing-note{ $parsing-note ;
HELP-ARRAY: \ $pretty-link{ $pretty-link ;
HELP-ARRAY: \ $prettyprinting-note{ $prettyprinting-note ;
HELP-ARRAY: \ $quotation{ $quotation ;
HELP-ARRAY: \ $references{ $references ;
HELP-ARRAY: \ $related{ $related ;
HELP-ARRAY: \ $see{ $see ;
HELP-ARRAY: \ $see-also{ $see-also ;
HELP-ARRAY: \ $sequence{ $sequence ;
HELP-ARRAY: \ $shuffle{ $shuffle ;
HELP-ARRAY: \ $side-effects{ $side-effects ;
HELP-ARRAY: \ $slot{ $slot ;
HELP-ARRAY: \ $snippet{ $snippet ;
HELP-ARRAY: \ $strong{ $strong ;
HELP-ARRAY: \ $subheading{ $subheading ;
HELP-ARRAY: \ $subsection{ $subsection ;
HELP-ARRAY: \ $subsection*{ $subsection* ;
HELP-ARRAY: \ $subsections{ $subsections ;
HELP-ARRAY: \ $synopsis{ $synopsis ;
HELP-ARRAY: \ $syntax{ $syntax ;
HELP-ARRAY: \ $table{ $table ;
HELP-ARRAY: \ $unchecked-example{ $unchecked-example ;
HELP-ARRAY: \ $url{ $url ;
HELP-ARRAY: \ $value{ $value ;
HELP-ARRAY: \ $values{ $values ;
HELP-ARRAY: \ $values-x/y{ $values-x/y ;
HELP-ARRAY: \ $var-description{ $var-description ;
HELP-ARRAY: \ $vocab-link{ $vocab-link ;
HELP-ARRAY: \ $vocab-links{ $vocab-links ;
HELP-ARRAY: \ $vocab-subsection{ $vocab-subsection ;
HELP-ARRAY: \ $vocabulary{ $vocabulary ;
HELP-ARRAY: \ $warning{ $warning ;
HELP-ARRAY: \ $breadcrumbs{ $breadcrumbs
HELP-ARRAY: \ $class-description{ $class-description
HELP-ARRAY: \ $code{ $code
HELP-ARRAY: \ $complex-shuffle{ $complex-shuffle
HELP-ARRAY: \ $content{ $content
HELP-ARRAY: \ $contract{ $contract
HELP-ARRAY: \ $curious{ $curious
HELP-ARRAY: \ $definition{ $definition
HELP-ARRAY: \ $definition-icons{ $definition-icons
HELP-ARRAY: \ $deprecated{ $deprecated
HELP-ARRAY: \ $description{ $description
HELP-ARRAY: \ $emphasis{ $emphasis
HELP-ARRAY: \ $error-description{ $error-description
HELP-ARRAY: \ $errors{ $errors
HELP-ARRAY: \ $example{ $example
HELP-ARRAY: \ $examples{ $examples
HELP-ARRAY: \ $heading{ $heading
HELP-ARRAY: \ $image{ $image
HELP-ARRAY: \ $instance{ $instance
HELP-ARRAY: \ $io-error{ $io-error
HELP-ARRAY: \ $link{ $link
HELP-ARRAY: \ $links{ $links
HELP-ARRAY: \ $list{ $list
HELP-ARRAY: \ $long-link{ $long-link
HELP-ARRAY: \ $low-level-note{ $low-level-note
HELP-ARRAY: \ $markup-example{ $markup-example
HELP-ARRAY: \ $maybe{ $maybe
HELP-ARRAY: \ $methods{ $methods
HELP-ARRAY: \ $nl{ $nl
HELP-ARRAY: \ $notes{ $notes
HELP-ARRAY: \ $or{ $or
HELP-ARRAY: \ $parsing-note{ $parsing-note
HELP-ARRAY: \ $pretty-link{ $pretty-link
HELP-ARRAY: \ $prettyprinting-note{ $prettyprinting-note
HELP-ARRAY: \ $quotation{ $quotation
HELP-ARRAY: \ $references{ $references
HELP-ARRAY: \ $related{ $related
HELP-ARRAY: \ $see{ $see
HELP-ARRAY: \ $see-also{ $see-also
HELP-ARRAY: \ $sequence{ $sequence
HELP-ARRAY: \ $shuffle{ $shuffle
HELP-ARRAY: \ $side-effects{ $side-effects
HELP-ARRAY: \ $slot{ $slot
HELP-ARRAY: \ $snippet{ $snippet
HELP-ARRAY: \ $strong{ $strong
HELP-ARRAY: \ $subheading{ $subheading
HELP-ARRAY: \ $subsection{ $subsection
HELP-ARRAY: \ $subsection*{ $subsection*
HELP-ARRAY: \ $subsections{ $subsections
HELP-ARRAY: \ $synopsis{ $synopsis
HELP-ARRAY: \ $syntax{ $syntax
HELP-ARRAY: \ $table{ $table
HELP-ARRAY: \ $unchecked-example{ $unchecked-example
HELP-ARRAY: \ $url{ $url
HELP-ARRAY: \ $value{ $value
HELP-ARRAY: \ $values{ $values
HELP-ARRAY: \ $values-x/y{ $values-x/y
HELP-ARRAY: \ $var-description{ $var-description
HELP-ARRAY: \ $vocab-link{ $vocab-link
HELP-ARRAY: \ $vocab-links{ $vocab-links
HELP-ARRAY: \ $vocab-subsection{ $vocab-subsection
HELP-ARRAY: \ $vocabulary{ $vocabulary
HELP-ARRAY: \ $warning{ $warning
HELP-STRING: \ $breadcrumbs" $breadcrumbs ;
HELP-STRING: \ $class-description" $class-description ;
HELP-STRING: \ $code" $code ;
HELP-STRING: \ $complex-shuffle" $complex-shuffle ;
HELP-STRING: \ $content" $content ;
HELP-STRING: \ $contract" $contract ;
HELP-STRING: \ $curious" $curious ;
HELP-STRING: \ $definition" $definition ;
HELP-STRING: \ $definition-icons" $definition-icons ;
HELP-STRING: \ $deprecated" $deprecated ;
HELP-STRING: \ $description" $description ;
HELP-STRING: \ $emphasis" $emphasis ;
HELP-STRING: \ $error-description" $error-description ;
HELP-STRING: \ $errors" $errors ;
HELP-STRING: \ $example" $example ;
HELP-STRING: \ $examples" $examples ;
HELP-STRING: \ $heading" $heading ;
HELP-STRING: \ $image" $image ;
HELP-STRING: \ $instance" $instance ;
HELP-STRING: \ $io-error" $io-error ;
HELP-STRING: \ $link" $link ;
HELP-STRING: \ $links" $links ;
HELP-STRING: \ $list" $list ;
HELP-STRING: \ $long-link" $long-link ;
HELP-STRING: \ $low-level-note" $low-level-note ;
HELP-STRING: \ $markup-example" $markup-example ;
HELP-STRING: \ $maybe" $maybe ;
HELP-STRING: \ $methods" $methods ;
HELP-STRING: \ $nl" $nl ;
HELP-STRING: \ $notes" $notes ;
HELP-STRING: \ $or" $or ;
HELP-STRING: \ $parsing-note" $parsing-note ;
HELP-STRING: \ $pretty-link" $pretty-link ;
HELP-STRING: \ $prettyprinting-note" $prettyprinting-note ;
HELP-STRING: \ $quotation" $quotation ;
HELP-STRING: \ $references" $references ;
HELP-STRING: \ $related" $related ;
HELP-STRING: \ $see" $see ;
HELP-STRING: \ $see-also" $see-also ;
HELP-STRING: \ $sequence" $sequence ;
HELP-STRING: \ $shuffle" $shuffle ;
HELP-STRING: \ $side-effects" $side-effects ;
HELP-STRING: \ $slot" $slot ;
HELP-STRING: \ $snippet" $snippet ;
HELP-STRING: \ $strong" $strong ;
HELP-STRING: \ $subheading" $subheading ;
HELP-STRING: \ $subsection" $subsection ;
HELP-STRING: \ $subsection*" $subsection* ;
HELP-STRING: \ $subsections" $subsections ;
HELP-STRING: \ $synopsis" $synopsis ;
HELP-STRING: \ $syntax" $syntax ;
HELP-STRING: \ $table" $table ;
HELP-STRING: \ $unchecked-example" $unchecked-example ;
HELP-STRING: \ $url" $url ;
HELP-STRING: \ $value" $value ;
HELP-STRING: \ $values" $values ;
HELP-STRING: \ $values-x/y" $values-x/y ;
HELP-STRING: \ $var-description" $var-description ;
HELP-STRING: \ $vocab-link" $vocab-link ;
HELP-STRING: \ $vocab-links" $vocab-links ;
HELP-STRING: \ $vocab-subsection" $vocab-subsection ;
HELP-STRING: \ $vocabulary" $vocabulary ;
HELP-STRING: \ $warning" $warning ;
HELP-STRING: \ $breadcrumbs" $breadcrumbs
HELP-STRING: \ $class-description" $class-description
HELP-STRING: \ $code" $code
HELP-STRING: \ $complex-shuffle" $complex-shuffle
HELP-STRING: \ $content" $content
HELP-STRING: \ $contract" $contract
HELP-STRING: \ $curious" $curious
HELP-STRING: \ $definition" $definition
HELP-STRING: \ $definition-icons" $definition-icons
HELP-STRING: \ $deprecated" $deprecated
HELP-STRING: \ $description" $description
HELP-STRING: \ $emphasis" $emphasis
HELP-STRING: \ $error-description" $error-description
HELP-STRING: \ $errors" $errors
HELP-STRING: \ $example" $example
HELP-STRING: \ $examples" $examples
HELP-STRING: \ $heading" $heading
HELP-STRING: \ $image" $image
HELP-STRING: \ $instance" $instance
HELP-STRING: \ $io-error" $io-error
HELP-STRING: \ $link" $link
HELP-STRING: \ $links" $links
HELP-STRING: \ $list" $list
HELP-STRING: \ $long-link" $long-link
HELP-STRING: \ $low-level-note" $low-level-note
HELP-STRING: \ $markup-example" $markup-example
HELP-STRING: \ $maybe" $maybe
HELP-STRING: \ $methods" $methods
HELP-STRING: \ $nl" $nl
HELP-STRING: \ $notes" $notes
HELP-STRING: \ $or" $or
HELP-STRING: \ $parsing-note" $parsing-note
HELP-STRING: \ $pretty-link" $pretty-link
HELP-STRING: \ $prettyprinting-note" $prettyprinting-note
HELP-STRING: \ $quotation" $quotation
HELP-STRING: \ $references" $references
HELP-STRING: \ $related" $related
HELP-STRING: \ $see" $see
HELP-STRING: \ $see-also" $see-also
HELP-STRING: \ $sequence" $sequence
HELP-STRING: \ $shuffle" $shuffle
HELP-STRING: \ $side-effects" $side-effects
HELP-STRING: \ $slot" $slot
HELP-STRING: \ $snippet" $snippet
HELP-STRING: \ $strong" $strong
HELP-STRING: \ $subheading" $subheading
HELP-STRING: \ $subsection" $subsection
HELP-STRING: \ $subsection*" $subsection*
HELP-STRING: \ $subsections" $subsections
HELP-STRING: \ $synopsis" $synopsis
HELP-STRING: \ $syntax" $syntax
HELP-STRING: \ $table" $table
HELP-STRING: \ $unchecked-example" $unchecked-example
HELP-STRING: \ $url" $url
HELP-STRING: \ $value" $value
HELP-STRING: \ $values" $values
HELP-STRING: \ $values-x/y" $values-x/y
HELP-STRING: \ $var-description" $var-description
HELP-STRING: \ $vocab-link" $vocab-link
HELP-STRING: \ $vocab-links" $vocab-links
HELP-STRING: \ $vocab-subsection" $vocab-subsection
HELP-STRING: \ $vocabulary" $vocabulary
HELP-STRING: \ $warning" $warning
HELP-BACKTICK: \ $breadcrumbs` $breadcrumbs ;
HELP-BACKTICK: \ $class-description` $class-description ;
HELP-BACKTICK: \ $code` $code ;
HELP-BACKTICK: \ $complex-shuffle` $complex-shuffle ;
HELP-BACKTICK: \ $content` $content ;
HELP-BACKTICK: \ $contract` $contract ;
HELP-BACKTICK: \ $curious` $curious ;
HELP-BACKTICK: \ $definition` $definition ;
HELP-BACKTICK: \ $definition-icons` $definition-icons ;
HELP-BACKTICK: \ $deprecated` $deprecated ;
HELP-BACKTICK: \ $description` $description ;
HELP-BACKTICK: \ $emphasis` $emphasis ;
HELP-BACKTICK: \ $error-description` $error-description ;
HELP-BACKTICK: \ $errors` $errors ;
HELP-BACKTICK: \ $example` $example ;
HELP-BACKTICK: \ $examples` $examples ;
HELP-BACKTICK: \ $heading` $heading ;
HELP-BACKTICK: \ $image` $image ;
HELP-BACKTICK: \ $instance` $instance ;
HELP-BACKTICK: \ $io-error` $io-error ;
HELP-BACKTICK: \ $link` $link ;
HELP-BACKTICK: \ $links` $links ;
HELP-BACKTICK: \ $list` $list ;
HELP-BACKTICK: \ $long-link` $long-link ;
HELP-BACKTICK: \ $low-level-note` $low-level-note ;
HELP-BACKTICK: \ $markup-example` $markup-example ;
HELP-BACKTICK: \ $maybe` $maybe ;
HELP-BACKTICK: \ $methods` $methods ;
HELP-BACKTICK: \ $nl` $nl ;
HELP-BACKTICK: \ $notes` $notes ;
HELP-BACKTICK: \ $or` $or ;
HELP-BACKTICK: \ $parsing-note` $parsing-note ;
HELP-BACKTICK: \ $pretty-link` $pretty-link ;
HELP-BACKTICK: \ $prettyprinting-note` $prettyprinting-note ;
HELP-BACKTICK: \ $quotation` $quotation ;
HELP-BACKTICK: \ $references` $references ;
HELP-BACKTICK: \ $related` $related ;
HELP-BACKTICK: \ $see` $see ;
HELP-BACKTICK: \ $see-also` $see-also ;
HELP-BACKTICK: \ $sequence` $sequence ;
HELP-BACKTICK: \ $shuffle` $shuffle ;
HELP-BACKTICK: \ $side-effects` $side-effects ;
HELP-BACKTICK: \ $slot` $slot ;
HELP-BACKTICK: \ $snippet` $snippet ;
HELP-BACKTICK: \ $strong` $strong ;
HELP-BACKTICK: \ $subheading` $subheading ;
HELP-BACKTICK: \ $subsection` $subsection ;
HELP-BACKTICK: \ $subsection*` $subsection* ;
HELP-BACKTICK: \ $subsections` $subsections ;
HELP-BACKTICK: \ $synopsis` $synopsis ;
HELP-BACKTICK: \ $syntax` $syntax ;
HELP-BACKTICK: \ $table` $table ;
HELP-BACKTICK: \ $unchecked-example` $unchecked-example ;
HELP-BACKTICK: \ $url` $url ;
HELP-BACKTICK: \ $value` $value ;
HELP-BACKTICK: \ $values` $values ;
HELP-BACKTICK: \ $values-x/y` $values-x/y ;
HELP-BACKTICK: \ $var-description` $var-description ;
HELP-BACKTICK: \ $vocab-link` $vocab-link ;
HELP-BACKTICK: \ $vocab-links` $vocab-links ;
HELP-BACKTICK: \ $vocab-subsection` $vocab-subsection ;
HELP-BACKTICK: \ $vocabulary` $vocabulary ;
HELP-BACKTICK: \ $warning` $warning ;
HELP-BACKTICK: \ $breadcrumbs` $breadcrumbs
HELP-BACKTICK: \ $class-description` $class-description
HELP-BACKTICK: \ $code` $code
HELP-BACKTICK: \ $complex-shuffle` $complex-shuffle
HELP-BACKTICK: \ $content` $content
HELP-BACKTICK: \ $contract` $contract
HELP-BACKTICK: \ $curious` $curious
HELP-BACKTICK: \ $definition` $definition
HELP-BACKTICK: \ $definition-icons` $definition-icons
HELP-BACKTICK: \ $deprecated` $deprecated
HELP-BACKTICK: \ $description` $description
HELP-BACKTICK: \ $emphasis` $emphasis
HELP-BACKTICK: \ $error-description` $error-description
HELP-BACKTICK: \ $errors` $errors
HELP-BACKTICK: \ $example` $example
HELP-BACKTICK: \ $examples` $examples
HELP-BACKTICK: \ $heading` $heading
HELP-BACKTICK: \ $image` $image
HELP-BACKTICK: \ $instance` $instance
HELP-BACKTICK: \ $io-error` $io-error
HELP-BACKTICK: \ $link` $link
HELP-BACKTICK: \ $links` $links
HELP-BACKTICK: \ $list` $list
HELP-BACKTICK: \ $long-link` $long-link
HELP-BACKTICK: \ $low-level-note` $low-level-note
HELP-BACKTICK: \ $markup-example` $markup-example
HELP-BACKTICK: \ $maybe` $maybe
HELP-BACKTICK: \ $methods` $methods
HELP-BACKTICK: \ $nl` $nl
HELP-BACKTICK: \ $notes` $notes
HELP-BACKTICK: \ $or` $or
HELP-BACKTICK: \ $parsing-note` $parsing-note
HELP-BACKTICK: \ $pretty-link` $pretty-link
HELP-BACKTICK: \ $prettyprinting-note` $prettyprinting-note
HELP-BACKTICK: \ $quotation` $quotation
HELP-BACKTICK: \ $references` $references
HELP-BACKTICK: \ $related` $related
HELP-BACKTICK: \ $see` $see
HELP-BACKTICK: \ $see-also` $see-also
HELP-BACKTICK: \ $sequence` $sequence
HELP-BACKTICK: \ $shuffle` $shuffle
HELP-BACKTICK: \ $side-effects` $side-effects
HELP-BACKTICK: \ $slot` $slot
HELP-BACKTICK: \ $snippet` $snippet
HELP-BACKTICK: \ $strong` $strong
HELP-BACKTICK: \ $subheading` $subheading
HELP-BACKTICK: \ $subsection` $subsection
HELP-BACKTICK: \ $subsection*` $subsection*
HELP-BACKTICK: \ $subsections` $subsections
HELP-BACKTICK: \ $synopsis` $synopsis
HELP-BACKTICK: \ $syntax` $syntax
HELP-BACKTICK: \ $table` $table
HELP-BACKTICK: \ $unchecked-example` $unchecked-example
HELP-BACKTICK: \ $url` $url
HELP-BACKTICK: \ $value` $value
HELP-BACKTICK: \ $values` $values
HELP-BACKTICK: \ $values-x/y` $values-x/y
HELP-BACKTICK: \ $var-description` $var-description
HELP-BACKTICK: \ $vocab-link` $vocab-link
HELP-BACKTICK: \ $vocab-links` $vocab-links
HELP-BACKTICK: \ $vocab-subsection` $vocab-subsection
HELP-BACKTICK: \ $vocabulary` $vocabulary
HELP-BACKTICK: \ $warning` $warning
HELP-2BACKTICKS: \ $breadcrumbs`` $breadcrumbs ;
HELP-2BACKTICKS: \ $class-description`` $class-description ;
HELP-2BACKTICKS: \ $code`` $code ;
HELP-2BACKTICKS: \ $complex-shuffle`` $complex-shuffle ;
HELP-2BACKTICKS: \ $content`` $content ;
HELP-2BACKTICKS: \ $contract`` $contract ;
HELP-2BACKTICKS: \ $curious`` $curious ;
HELP-2BACKTICKS: \ $definition`` $definition ;
HELP-2BACKTICKS: \ $definition-icons`` $definition-icons ;
HELP-2BACKTICKS: \ $deprecated`` $deprecated ;
HELP-2BACKTICKS: \ $description`` $description ;
HELP-2BACKTICKS: \ $emphasis`` $emphasis ;
HELP-2BACKTICKS: \ $error-description`` $error-description ;
HELP-2BACKTICKS: \ $errors`` $errors ;
HELP-2BACKTICKS: \ $example`` $example ;
HELP-2BACKTICKS: \ $examples`` $examples ;
HELP-2BACKTICKS: \ $heading`` $heading ;
HELP-2BACKTICKS: \ $image`` $image ;
HELP-2BACKTICKS: \ $instance`` $instance ;
HELP-2BACKTICKS: \ $io-error`` $io-error ;
HELP-2BACKTICKS: \ $link`` $link ;
HELP-2BACKTICKS: \ $links`` $links ;
HELP-2BACKTICKS: \ $list`` $list ;
HELP-2BACKTICKS: \ $long-link`` $long-link ;
HELP-2BACKTICKS: \ $low-level-note`` $low-level-note ;
HELP-2BACKTICKS: \ $markup-example`` $markup-example ;
HELP-2BACKTICKS: \ $maybe`` $maybe ;
HELP-2BACKTICKS: \ $methods`` $methods ;
HELP-2BACKTICKS: \ $nl`` $nl ;
HELP-2BACKTICKS: \ $notes`` $notes ;
HELP-2BACKTICKS: \ $or`` $or ;
HELP-2BACKTICKS: \ $parsing-note`` $parsing-note ;
HELP-2BACKTICKS: \ $pretty-link`` $pretty-link ;
HELP-2BACKTICKS: \ $prettyprinting-note`` $prettyprinting-note ;
HELP-2BACKTICKS: \ $quotation`` $quotation ;
HELP-2BACKTICKS: \ $references`` $references ;
HELP-2BACKTICKS: \ $related`` $related ;
HELP-2BACKTICKS: \ $see`` $see ;
HELP-2BACKTICKS: \ $see-also`` $see-also ;
HELP-2BACKTICKS: \ $sequence`` $sequence ;
HELP-2BACKTICKS: \ $shuffle`` $shuffle ;
HELP-2BACKTICKS: \ $side-effects`` $side-effects ;
HELP-2BACKTICKS: \ $slot`` $slot ;
HELP-2BACKTICKS: \ $snippet`` $snippet ;
HELP-2BACKTICKS: \ $strong`` $strong ;
HELP-2BACKTICKS: \ $subheading`` $subheading ;
HELP-2BACKTICKS: \ $subsection`` $subsection ;
HELP-2BACKTICKS: \ $subsection*`` $subsection* ;
HELP-2BACKTICKS: \ $subsections`` $subsections ;
HELP-2BACKTICKS: \ $synopsis`` $synopsis ;
HELP-2BACKTICKS: \ $syntax`` $syntax ;
HELP-2BACKTICKS: \ $table`` $table ;
HELP-2BACKTICKS: \ $unchecked-example`` $unchecked-example ;
HELP-2BACKTICKS: \ $url`` $url ;
HELP-2BACKTICKS: \ $value`` $value ;
HELP-2BACKTICKS: \ $values`` $values ;
HELP-2BACKTICKS: \ $values-x/y`` $values-x/y ;
HELP-2BACKTICKS: \ $var-description`` $var-description ;
HELP-2BACKTICKS: \ $vocab-link`` $vocab-link ;
HELP-2BACKTICKS: \ $vocab-links`` $vocab-links ;
HELP-2BACKTICKS: \ $vocab-subsection`` $vocab-subsection ;
HELP-2BACKTICKS: \ $vocabulary`` $vocabulary ;
HELP-2BACKTICKS: \ $warning`` $warning ;
HELP-2BACKTICKS: \ $breadcrumbs`` $breadcrumbs
HELP-2BACKTICKS: \ $class-description`` $class-description
HELP-2BACKTICKS: \ $code`` $code
HELP-2BACKTICKS: \ $complex-shuffle`` $complex-shuffle
HELP-2BACKTICKS: \ $content`` $content
HELP-2BACKTICKS: \ $contract`` $contract
HELP-2BACKTICKS: \ $curious`` $curious
HELP-2BACKTICKS: \ $definition`` $definition
HELP-2BACKTICKS: \ $definition-icons`` $definition-icons
HELP-2BACKTICKS: \ $deprecated`` $deprecated
HELP-2BACKTICKS: \ $description`` $description
HELP-2BACKTICKS: \ $emphasis`` $emphasis
HELP-2BACKTICKS: \ $error-description`` $error-description
HELP-2BACKTICKS: \ $errors`` $errors
HELP-2BACKTICKS: \ $example`` $example
HELP-2BACKTICKS: \ $examples`` $examples
HELP-2BACKTICKS: \ $heading`` $heading
HELP-2BACKTICKS: \ $image`` $image
HELP-2BACKTICKS: \ $instance`` $instance
HELP-2BACKTICKS: \ $io-error`` $io-error
HELP-2BACKTICKS: \ $link`` $link
HELP-2BACKTICKS: \ $links`` $links
HELP-2BACKTICKS: \ $list`` $list
HELP-2BACKTICKS: \ $long-link`` $long-link
HELP-2BACKTICKS: \ $low-level-note`` $low-level-note
HELP-2BACKTICKS: \ $markup-example`` $markup-example
HELP-2BACKTICKS: \ $maybe`` $maybe
HELP-2BACKTICKS: \ $methods`` $methods
HELP-2BACKTICKS: \ $nl`` $nl
HELP-2BACKTICKS: \ $notes`` $notes
HELP-2BACKTICKS: \ $or`` $or
HELP-2BACKTICKS: \ $parsing-note`` $parsing-note
HELP-2BACKTICKS: \ $pretty-link`` $pretty-link
HELP-2BACKTICKS: \ $prettyprinting-note`` $prettyprinting-note
HELP-2BACKTICKS: \ $quotation`` $quotation
HELP-2BACKTICKS: \ $references`` $references
HELP-2BACKTICKS: \ $related`` $related
HELP-2BACKTICKS: \ $see`` $see
HELP-2BACKTICKS: \ $see-also`` $see-also
HELP-2BACKTICKS: \ $sequence`` $sequence
HELP-2BACKTICKS: \ $shuffle`` $shuffle
HELP-2BACKTICKS: \ $side-effects`` $side-effects
HELP-2BACKTICKS: \ $slot`` $slot
HELP-2BACKTICKS: \ $snippet`` $snippet
HELP-2BACKTICKS: \ $strong`` $strong
HELP-2BACKTICKS: \ $subheading`` $subheading
HELP-2BACKTICKS: \ $subsection`` $subsection
HELP-2BACKTICKS: \ $subsection*`` $subsection*
HELP-2BACKTICKS: \ $subsections`` $subsections
HELP-2BACKTICKS: \ $synopsis`` $synopsis
HELP-2BACKTICKS: \ $syntax`` $syntax
HELP-2BACKTICKS: \ $table`` $table
HELP-2BACKTICKS: \ $unchecked-example`` $unchecked-example
HELP-2BACKTICKS: \ $url`` $url
HELP-2BACKTICKS: \ $value`` $value
HELP-2BACKTICKS: \ $values`` $values
HELP-2BACKTICKS: \ $values-x/y`` $values-x/y
HELP-2BACKTICKS: \ $var-description`` $var-description
HELP-2BACKTICKS: \ $vocab-link`` $vocab-link
HELP-2BACKTICKS: \ $vocab-links`` $vocab-links
HELP-2BACKTICKS: \ $vocab-subsection`` $vocab-subsection
HELP-2BACKTICKS: \ $vocabulary`` $vocabulary
HELP-2BACKTICKS: \ $warning`` $warning
HELP-3BACKTICKS: \ $breadcrumbs``` $breadcrumbs ;
HELP-3BACKTICKS: \ $class-description``` $class-description ;
HELP-3BACKTICKS: \ $code``` $code ;
HELP-3BACKTICKS: \ $complex-shuffle``` $complex-shuffle ;
HELP-3BACKTICKS: \ $content``` $content ;
HELP-3BACKTICKS: \ $contract``` $contract ;
HELP-3BACKTICKS: \ $curious``` $curious ;
HELP-3BACKTICKS: \ $definition``` $definition ;
HELP-3BACKTICKS: \ $definition-icons``` $definition-icons ;
HELP-3BACKTICKS: \ $deprecated``` $deprecated ;
HELP-3BACKTICKS: \ $description``` $description ;
HELP-3BACKTICKS: \ $emphasis``` $emphasis ;
HELP-3BACKTICKS: \ $error-description``` $error-description ;
HELP-3BACKTICKS: \ $errors``` $errors ;
HELP-3BACKTICKS: \ $example``` $example ;
HELP-3BACKTICKS: \ $examples``` $examples ;
HELP-3BACKTICKS: \ $heading``` $heading ;
HELP-3BACKTICKS: \ $image``` $image ;
HELP-3BACKTICKS: \ $instance``` $instance ;
HELP-3BACKTICKS: \ $io-error``` $io-error ;
HELP-3BACKTICKS: \ $link``` $link ;
HELP-3BACKTICKS: \ $links``` $links ;
HELP-3BACKTICKS: \ $list``` $list ;
HELP-3BACKTICKS: \ $long-link``` $long-link ;
HELP-3BACKTICKS: \ $low-level-note``` $low-level-note ;
HELP-3BACKTICKS: \ $markup-example``` $markup-example ;
HELP-3BACKTICKS: \ $maybe``` $maybe ;
HELP-3BACKTICKS: \ $methods``` $methods ;
HELP-3BACKTICKS: \ $nl``` $nl ;
HELP-3BACKTICKS: \ $notes``` $notes ;
HELP-3BACKTICKS: \ $or``` $or ;
HELP-3BACKTICKS: \ $parsing-note``` $parsing-note ;
HELP-3BACKTICKS: \ $pretty-link``` $pretty-link ;
HELP-3BACKTICKS: \ $prettyprinting-note``` $prettyprinting-note ;
HELP-3BACKTICKS: \ $quotation``` $quotation ;
HELP-3BACKTICKS: \ $references``` $references ;
HELP-3BACKTICKS: \ $related``` $related ;
HELP-3BACKTICKS: \ $see``` $see ;
HELP-3BACKTICKS: \ $see-also``` $see-also ;
HELP-3BACKTICKS: \ $sequence``` $sequence ;
HELP-3BACKTICKS: \ $shuffle``` $shuffle ;
HELP-3BACKTICKS: \ $side-effects``` $side-effects ;
HELP-3BACKTICKS: \ $slot``` $slot ;
HELP-3BACKTICKS: \ $snippet``` $snippet ;
HELP-3BACKTICKS: \ $strong``` $strong ;
HELP-3BACKTICKS: \ $subheading``` $subheading ;
HELP-3BACKTICKS: \ $subsection``` $subsection ;
HELP-3BACKTICKS: \ $subsection*``` $subsection* ;
HELP-3BACKTICKS: \ $subsections``` $subsections ;
HELP-3BACKTICKS: \ $synopsis``` $synopsis ;
HELP-3BACKTICKS: \ $syntax``` $syntax ;
HELP-3BACKTICKS: \ $table``` $table ;
HELP-3BACKTICKS: \ $unchecked-example``` $unchecked-example ;
HELP-3BACKTICKS: \ $url``` $url ;
HELP-3BACKTICKS: \ $value``` $value ;
HELP-3BACKTICKS: \ $values``` $values ;
HELP-3BACKTICKS: \ $values-x/y``` $values-x/y ;
HELP-3BACKTICKS: \ $var-description``` $var-description ;
HELP-3BACKTICKS: \ $vocab-link``` $vocab-link ;
HELP-3BACKTICKS: \ $vocab-links``` $vocab-links ;
HELP-3BACKTICKS: \ $vocab-subsection``` $vocab-subsection ;
HELP-3BACKTICKS: \ $vocabulary``` $vocabulary ;
HELP-3BACKTICKS: \ $warning``` $warning ;
HELP-3BACKTICKS: \ $breadcrumbs``` $breadcrumbs
HELP-3BACKTICKS: \ $class-description``` $class-description
HELP-3BACKTICKS: \ $code``` $code
HELP-3BACKTICKS: \ $complex-shuffle``` $complex-shuffle
HELP-3BACKTICKS: \ $content``` $content
HELP-3BACKTICKS: \ $contract``` $contract
HELP-3BACKTICKS: \ $curious``` $curious
HELP-3BACKTICKS: \ $definition``` $definition
HELP-3BACKTICKS: \ $definition-icons``` $definition-icons
HELP-3BACKTICKS: \ $deprecated``` $deprecated
HELP-3BACKTICKS: \ $description``` $description
HELP-3BACKTICKS: \ $emphasis``` $emphasis
HELP-3BACKTICKS: \ $error-description``` $error-description
HELP-3BACKTICKS: \ $errors``` $errors
HELP-3BACKTICKS: \ $example``` $example
HELP-3BACKTICKS: \ $examples``` $examples
HELP-3BACKTICKS: \ $heading``` $heading
HELP-3BACKTICKS: \ $image``` $image
HELP-3BACKTICKS: \ $instance``` $instance
HELP-3BACKTICKS: \ $io-error``` $io-error
HELP-3BACKTICKS: \ $link``` $link
HELP-3BACKTICKS: \ $links``` $links
HELP-3BACKTICKS: \ $list``` $list
HELP-3BACKTICKS: \ $long-link``` $long-link
HELP-3BACKTICKS: \ $low-level-note``` $low-level-note
HELP-3BACKTICKS: \ $markup-example``` $markup-example
HELP-3BACKTICKS: \ $maybe``` $maybe
HELP-3BACKTICKS: \ $methods``` $methods
HELP-3BACKTICKS: \ $nl``` $nl
HELP-3BACKTICKS: \ $notes``` $notes
HELP-3BACKTICKS: \ $or``` $or
HELP-3BACKTICKS: \ $parsing-note``` $parsing-note
HELP-3BACKTICKS: \ $pretty-link``` $pretty-link
HELP-3BACKTICKS: \ $prettyprinting-note``` $prettyprinting-note
HELP-3BACKTICKS: \ $quotation``` $quotation
HELP-3BACKTICKS: \ $references``` $references
HELP-3BACKTICKS: \ $related``` $related
HELP-3BACKTICKS: \ $see``` $see
HELP-3BACKTICKS: \ $see-also``` $see-also
HELP-3BACKTICKS: \ $sequence``` $sequence
HELP-3BACKTICKS: \ $shuffle``` $shuffle
HELP-3BACKTICKS: \ $side-effects``` $side-effects
HELP-3BACKTICKS: \ $slot``` $slot
HELP-3BACKTICKS: \ $snippet``` $snippet
HELP-3BACKTICKS: \ $strong``` $strong
HELP-3BACKTICKS: \ $subheading``` $subheading
HELP-3BACKTICKS: \ $subsection``` $subsection
HELP-3BACKTICKS: \ $subsection*``` $subsection*
HELP-3BACKTICKS: \ $subsections``` $subsections
HELP-3BACKTICKS: \ $synopsis``` $synopsis
HELP-3BACKTICKS: \ $syntax``` $syntax
HELP-3BACKTICKS: \ $table``` $table
HELP-3BACKTICKS: \ $unchecked-example``` $unchecked-example
HELP-3BACKTICKS: \ $url``` $url
HELP-3BACKTICKS: \ $value``` $value
HELP-3BACKTICKS: \ $values``` $values
HELP-3BACKTICKS: \ $values-x/y``` $values-x/y
HELP-3BACKTICKS: \ $var-description``` $var-description
HELP-3BACKTICKS: \ $vocab-link``` $vocab-link
HELP-3BACKTICKS: \ $vocab-links``` $vocab-links
HELP-3BACKTICKS: \ $vocab-subsection``` $vocab-subsection
HELP-3BACKTICKS: \ $vocabulary``` $vocabulary
HELP-3BACKTICKS: \ $warning``` $warning
HELP-BACKSLASH: \ $breadcrumbs\ $breadcrumbs ;
HELP-BACKSLASH: \ $class-description\ $class-description ;
HELP-BACKSLASH: \ $code\ $code ;
HELP-BACKSLASH: \ $complex-shuffle\ $complex-shuffle ;
HELP-BACKSLASH: \ $content\ $content ;
HELP-BACKSLASH: \ $contract\ $contract ;
HELP-BACKSLASH: \ $curious\ $curious ;
HELP-BACKSLASH: \ $definition\ $definition ;
HELP-BACKSLASH: \ $definition-icons\ $definition-icons ;
HELP-BACKSLASH: \ $deprecated\ $deprecated ;
HELP-BACKSLASH: \ $description\ $description ;
HELP-BACKSLASH: \ $emphasis\ $emphasis ;
HELP-BACKSLASH: \ $error-description\ $error-description ;
HELP-BACKSLASH: \ $errors\ $errors ;
HELP-BACKSLASH: \ $example\ $example ;
HELP-BACKSLASH: \ $examples\ $examples ;
HELP-BACKSLASH: \ $heading\ $heading ;
HELP-BACKSLASH: \ $image\ $image ;
HELP-BACKSLASH: \ $instance\ $instance ;
HELP-BACKSLASH: \ $io-error\ $io-error ;
HELP-BACKSLASH: \ $link\ $link ;
HELP-BACKSLASH: \ $links\ $links ;
HELP-BACKSLASH: \ $list\ $list ;
HELP-BACKSLASH: \ $long-link\ $long-link ;
HELP-BACKSLASH: \ $low-level-note\ $low-level-note ;
HELP-BACKSLASH: \ $markup-example\ $markup-example ;
HELP-BACKSLASH: \ $maybe\ $maybe ;
HELP-BACKSLASH: \ $methods\ $methods ;
HELP-BACKSLASH: \ $nl\ $nl ;
HELP-BACKSLASH: \ $notes\ $notes ;
HELP-BACKSLASH: \ $or\ $or ;
HELP-BACKSLASH: \ $parsing-note\ $parsing-note ;
HELP-BACKSLASH: \ $pretty-link\ $pretty-link ;
HELP-BACKSLASH: \ $prettyprinting-note\ $prettyprinting-note ;
HELP-BACKSLASH: \ $quotation\ $quotation ;
HELP-BACKSLASH: \ $references\ $references ;
HELP-BACKSLASH: \ $related\ $related ;
HELP-BACKSLASH: \ $see\ $see ;
HELP-BACKSLASH: \ $see-also\ $see-also ;
HELP-BACKSLASH: \ $sequence\ $sequence ;
HELP-BACKSLASH: \ $shuffle\ $shuffle ;
HELP-BACKSLASH: \ $side-effects\ $side-effects ;
HELP-BACKSLASH: \ $slot\ $slot ;
HELP-BACKSLASH: \ $snippet\ $snippet ;
HELP-BACKSLASH: \ $strong\ $strong ;
HELP-BACKSLASH: \ $subheading\ $subheading ;
HELP-BACKSLASH: \ $subsection\ $subsection ;
HELP-BACKSLASH: \ $subsection*\ $subsection* ;
HELP-BACKSLASH: \ $subsections\ $subsections ;
HELP-BACKSLASH: \ $synopsis\ $synopsis ;
HELP-BACKSLASH: \ $syntax\ $syntax ;
HELP-BACKSLASH: \ $table\ $table ;
HELP-BACKSLASH: \ $unchecked-example\ $unchecked-example ;
HELP-BACKSLASH: \ $url\ $url ;
HELP-BACKSLASH: \ $value\ $value ;
HELP-BACKSLASH: \ $values\ $values ;
HELP-BACKSLASH: \ $values-x/y\ $values-x/y ;
HELP-BACKSLASH: \ $var-description\ $var-description ;
HELP-BACKSLASH: \ $vocab-link\ $vocab-link ;
HELP-BACKSLASH: \ $vocab-links\ $vocab-links ;
HELP-BACKSLASH: \ $vocab-subsection\ $vocab-subsection ;
HELP-BACKSLASH: \ $vocabulary\ $vocabulary ;
HELP-BACKSLASH: \ $warning\ $warning ;
HELP-BACKSLASH: \ $breadcrumbs\ $breadcrumbs
HELP-BACKSLASH: \ $class-description\ $class-description
HELP-BACKSLASH: \ $code\ $code
HELP-BACKSLASH: \ $complex-shuffle\ $complex-shuffle
HELP-BACKSLASH: \ $content\ $content
HELP-BACKSLASH: \ $contract\ $contract
HELP-BACKSLASH: \ $curious\ $curious
HELP-BACKSLASH: \ $definition\ $definition
HELP-BACKSLASH: \ $definition-icons\ $definition-icons
HELP-BACKSLASH: \ $deprecated\ $deprecated
HELP-BACKSLASH: \ $description\ $description
HELP-BACKSLASH: \ $emphasis\ $emphasis
HELP-BACKSLASH: \ $error-description\ $error-description
HELP-BACKSLASH: \ $errors\ $errors
HELP-BACKSLASH: \ $example\ $example
HELP-BACKSLASH: \ $examples\ $examples
HELP-BACKSLASH: \ $heading\ $heading
HELP-BACKSLASH: \ $image\ $image
HELP-BACKSLASH: \ $instance\ $instance
HELP-BACKSLASH: \ $io-error\ $io-error
HELP-BACKSLASH: \ $link\ $link
HELP-BACKSLASH: \ $links\ $links
HELP-BACKSLASH: \ $list\ $list
HELP-BACKSLASH: \ $long-link\ $long-link
HELP-BACKSLASH: \ $low-level-note\ $low-level-note
HELP-BACKSLASH: \ $markup-example\ $markup-example
HELP-BACKSLASH: \ $maybe\ $maybe
HELP-BACKSLASH: \ $methods\ $methods
HELP-BACKSLASH: \ $nl\ $nl
HELP-BACKSLASH: \ $notes\ $notes
HELP-BACKSLASH: \ $or\ $or
HELP-BACKSLASH: \ $parsing-note\ $parsing-note
HELP-BACKSLASH: \ $pretty-link\ $pretty-link
HELP-BACKSLASH: \ $prettyprinting-note\ $prettyprinting-note
HELP-BACKSLASH: \ $quotation\ $quotation
HELP-BACKSLASH: \ $references\ $references
HELP-BACKSLASH: \ $related\ $related
HELP-BACKSLASH: \ $see\ $see
HELP-BACKSLASH: \ $see-also\ $see-also
HELP-BACKSLASH: \ $sequence\ $sequence
HELP-BACKSLASH: \ $shuffle\ $shuffle
HELP-BACKSLASH: \ $side-effects\ $side-effects
HELP-BACKSLASH: \ $slot\ $slot
HELP-BACKSLASH: \ $snippet\ $snippet
HELP-BACKSLASH: \ $strong\ $strong
HELP-BACKSLASH: \ $subheading\ $subheading
HELP-BACKSLASH: \ $subsection\ $subsection
HELP-BACKSLASH: \ $subsection*\ $subsection*
HELP-BACKSLASH: \ $subsections\ $subsections
HELP-BACKSLASH: \ $synopsis\ $synopsis
HELP-BACKSLASH: \ $syntax\ $syntax
HELP-BACKSLASH: \ $table\ $table
HELP-BACKSLASH: \ $unchecked-example\ $unchecked-example
HELP-BACKSLASH: \ $url\ $url
HELP-BACKSLASH: \ $value\ $value
HELP-BACKSLASH: \ $values\ $values
HELP-BACKSLASH: \ $values-x/y\ $values-x/y
HELP-BACKSLASH: \ $var-description\ $var-description
HELP-BACKSLASH: \ $vocab-link\ $vocab-link
HELP-BACKSLASH: \ $vocab-links\ $vocab-links
HELP-BACKSLASH: \ $vocab-subsection\ $vocab-subsection
HELP-BACKSLASH: \ $vocabulary\ $vocabulary
HELP-BACKSLASH: \ $warning\ $warning