Docs.rs
tokay-0.6.13
Platform
aarch64-apple-darwin
aarch64-unknown-linux-gnu
i686-pc-windows-msvc
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
tokay 0.6.13
Tokay is a programming language designed for ad-hoc parsing.
Crate
Source
Builds
Feature flags
Documentation
Hide files
..
aggregates.tok
assign_op.tok
ast_offset.tok
begin_end.tok
binary_op_add.tok
binary_op_div.tok
binary_op_divi.tok
binary_op_mod.tok
binary_op_mul.tok
binary_op_sub.tok
bool.tok
break_continue.tok
builtin_ast_ondemand.tok
builtin_chr.tok
builtin_offset.tok
builtin_ord.tok
builtin_repr.tok
builtin_type.tok
captures.tok
comparison.tok
comparison_captures.tok
compiler_identifiers.tok
deref.tok
dict.tok
dict_clone.tok
dict_iter.tok
dict_len.tok
dict_merge.tok
dict_pop.tok
dict_upsert.tok
error.tok
expressions.tok
float.tok
for.tok
if.tok
if_else.tok
inline_assign.tok
inline_inc_dec.tok
inline_parseable_sequence.tok
int.tok
issue_130.tok
iter.tok
iter_enum.tok
iter_map.tok
keyword_reject.tok
list.tok
list_add.tok
list_clone.tok
list_extend.tok
list_flatten.tok
list_index.tok
list_len.tok
list_pop.tok
list_push.tok
list_repr.tok
list_resize.tok
list_sort.tok
list_upsert.tok
list_void.tok
literal.tok
loop.tok
loop_break.tok
loop_continue.tok
loop_in_loop.tok
mutable_objects.tok
next_push.tok
parselet_anonymous.tok
parselet_args_default_static.tok
parselet_args_default_var.tok
parselet_begin_end_1.tok
parselet_begin_end_2.tok
parselet_begin_end_3.tok
parselet_call_error_reporting.tok
parselet_func_static.tok
parselet_func_var.tok
parselet_generic_default_defined.tok
parselet_generic_default_undefined.tok
parselet_generic_direct.tok
parselet_generic_in_generic.tok
parselet_generic_resolve.tok
parselet_generic_self.tok
parselet_generic_self_leftrec.tok
parselet_generic_selfref.tok
parselet_generic_simple.tok
parselet_leftrec.tok
parselet_repeat.tok
piped_grammar.tok
range.tok
readme_count_word.tok
readme_count_word_and_number.tok
readme_hello_word.tok
rvalue.tok
scopes.tok
sequence_issue_63.tok
sequences.tok
str.tok
str_find.tok
str_get_item.tok
str_get_item_ext.tok
str_join.tok
str_len.tok
str_lower_upper.tok
str_replace.tok
str_repr.tok
str_split.tok
str_startswith_endswith.tok
str_substr.tok
syntax_inline_list.tok
token_builtin.tok
token_builtin_Float.tok
token_builtin_Int.tok
token_modifiers.tok
token_prelude_Expect.tok
token_prelude_Keyword.tok
token_prelude_Number.tok
token_prelude_Token.tok
unary_op.tok
unescaping.tok
variables.tok
whitespace.tok
1
2
3
4
5
6
7
8
9
factorial : @x { if !x return 1 x * factorial(x - 1) } factorial(4) #--- #24