MCPcopy Create free account

hub / github.com/clojure-rs/ClojureRS / functions

Functions479 in github.com/clojure-rs/ClojureRS

Functionis_identifier_char
Returns whether if a character can be in the tail of an identifier. An identifier is composed of a head (its first char) and a tail (the other chars)
src/reader.rs:107
Functionis_minus_char
Returns true if given character is a minus character - `-`,
src/reader.rs:174
Functionis_nil_blank
()
src/clojure_string/blank_qmark_.rs:84
Functionis_non_empty_string_blank
()
src/clojure_string/blank_qmark_.rs:52
Functionis_non_numeric_identifier_char_or_slash
Returns true if a character is an acceptable (non numeric) identifier char, or '/' An identifier is either a non numeric identifier char, followed by
src/reader.rs:168
Functionis_period_char
Returns true if given character is a period character - `-`,
src/reader.rs:180
Functionis_string_with_whitespace_and_text_blank
()
src/clojure_string/blank_qmark_.rs:76
Functionis_string_with_whitespace_only_blank
()
src/clojure_string/blank_qmark_.rs:68
Functionjoin_empty_collection_to_empty_string
()
src/clojure_string/join.rs:62
Functionjoin_multiple_items_in_collection_to_string
()
src/clojure_string/join.rs:83
Functionjoin_multiple_items_in_collection_with_separator_to_string
()
src/clojure_string/join.rs:102
Functionjoin_multiple_items_in_pvec_collection_with_separator_to_string
()
src/clojure_string/join.rs:124
Functionjoin_one_item_collection_to_string
()
src/clojure_string/join.rs:71
Functionlower_case_string
()
src/clojure_string/lower_case.rs:38
Functionmain
()
src/main.rs:35
Methodmerge_referred_syms
@TODO refactor the referred syms vector to use a set instead
src/namespace.rs:86
Methodmeta
(&self)
src/persistent_list_map.rs:242
Methodmeta
(&self)
src/persistent_list.rs:102
Methodmeta
(&self)
src/persistent_vector.rs:16
Methodmeta
(&self)
src/var.rs:105
Methodmeta
(&self)
src/protocols/imeta.rs:20
Functionmore_on_empty_iterable
()
src/rust_core/more.rs:48
Functionmore_on_iterable_with_one_value_list
()
src/rust_core/more.rs:60
Functionmore_on_iterable_with_three_value_list
()
src/rust_core/more.rs:74
Functionmore_on_non_iterable_value
()
src/rust_core/more.rs:97
Functionmultiply_with_one_argument_returns_identity
()
src/rust_core/_multiply_.rs:60
Functionmultiply_with_two_argument_returns_product
()
src/rust_core/_multiply_.rs:67
Functionmultiply_without_arguments_returns_one
()
src/rust_core/_multiply_.rs:53
Methodname
(&self)
src/symbol.rs:69
Methodname
(&self)
src/keyword.rs:11
Methodnew
(environment: Rc<Environment>)
src/repl.rs:16
Methodnew
(namespaces: Vec<Symbol>, syms: HashMap<Symbol, Vec<Symbol>>)
src/namespace.rs:51
Methodnew
(enclosing_environment: Rc<Environment>)
src/rust_core/load_file.rs:13
Methodnew
(enclosing_environment: Rc<Environment>)
src/rust_core/eval.rs:15
Methodnew
(enclosing_environment: Rc<Environment>)
src/rust_core/refer.rs:20
Methodnew
(enclosing_environment: Rc<Environment>)
src/rust_core/with_meta.rs:20
Methodnew
(enclosing_environment: Rc<Environment>)
src/rust_core/ns.rs:14
Methodnew
(enclosing_environment: Rc<Environment>)
src/rust_core/meta.rs:21
Methodnew
(enclosing_environment: Rc<Environment>)
src/rust_core/special_form/var.rs:15
Methodnew_local_environment
(outer_environment: Rc<Environment>)
src/environment.rs:178
Methodnew_main_environment
()
src/environment.rs:175
Methodnew_main_val
@TODO as mentioned, we've been working with a memory model where values exist in our system once-ish and we reference them all over with Rc<..> Look i
src/environment.rs:75
Functionnew_namespace_starts_empty
()
src/namespace.rs:699
Functionnew_removes_namespace_from_qualified_symbol
()
src/namespace.rs:688
Functionnew_with_empty_refers
()
src/namespace.rs:439
Methodnext
(&mut self)
src/persistent_list_map.rs:199
Methodnext
(&mut self)
src/persistent_list.rs:174
Methodnext
(&mut self)
src/persistent_vector.rs:89
Functionone_is_greater_than_zero
()
src/rust_core/gte.rs:57
Functionone_is_greater_than_zero
()
src/rust_core/gt.rs:57
Functionone_is_gte_than_one
()
src/rust_core/gte.rs:64
Functionone_is_less_than_one_and_fractions
()
src/rust_core/lt.rs:71
Functionone_is_lte_than_one
()
src/rust_core/lte.rs:64
Functionone_is_lte_than_one_and_fractions
()
src/rust_core/lte.rs:71
Functionone_is_not_greater_than_one
()
src/rust_core/gt.rs:64
Functionone_is_not_greater_than_one_and_fractions
()
src/rust_core/gt.rs:71
Functionone_is_not_gte_than_one_and_fractions
()
src/rust_core/gte.rs:71
Functionone_is_not_less_than_one
()
src/rust_core/lt.rs:64
Functionparses_args_given_e
()
src/user_action.rs:80
Functionparses_args_given_eval
()
src/user_action.rs:94
Functionparses_args_given_i
()
src/user_action.rs:52
Functionparses_args_given_init
()
src/user_action.rs:66
Functionparses_args_given_nil
()
src/user_action.rs:108
Functionparses_args_given_path
()
src/user_action.rs:40
Functionpersistent_list_map
()
src/persistent_list_map.rs:282
Functionplus_with_one_argument_returns_identity
()
src/rust_core/_plus_.rs:60
Functionplus_with_two_argument_returns_product
()
src/rust_core/_plus_.rs:67
Functionplus_without_arguments_returns_zero
()
src/rust_core/_plus_.rs:53
Methodread
Just wraps reader's read
src/repl.rs:28
Functionread_string
()
src/repl.rs:105
Methodread_string
@TODO add to reader.rs and wrap here
src/repl.rs:32
Functionrem_with_two_integer_argument_returns_remainder
()
src/rust_core/rem.rs:76
Functionrem_without_arguments_returns_error
()
src/rust_core/rem.rs:64
Functionreverse_string
()
src/clojure_string/reverse.rs:38
Functionsecond_on_empty_iterable
()
src/rust_core/second.rs:46
Functionsecond_on_iterable_with_two_value_list
()
src/rust_core/second.rs:55
Functionsecond_on_non_iterable_value
()
src/rust_core/second.rs:67
Functionsplit_by_comma
()
src/clojure_string/split.rs:57
Functionsplit_by_comma_not_in_string
()
src/clojure_string/split.rs:80
Functionsplit_by_doublequotes
()
src/clojure_string/split.rs:99
Functionsubtract_with_multiple_arguments_returns_difference_case1
()
src/rust_core/_subtract_.rs:114
Functionsubtract_with_multiple_arguments_returns_difference_case2
()
src/rust_core/_subtract_.rs:126
Functionsubtract_with_one_negative_argument_returns_positive_value
()
src/rust_core/_subtract_.rs:93
Functionsubtract_with_one_positive_argument_returns_negated_value
()
src/rust_core/_subtract_.rs:86
Functionsubtract_with_two_argument_returns_negative_difference
()
src/rust_core/_subtract_.rs:100
Functionsubtract_with_two_argument_returns_positive_difference
()
src/rust_core/_subtract_.rs:107
Functionsubtract_without_arguments_returns_one
()
src/rust_core/_subtract_.rs:74
Functionsymbol_parser_namespace_qualified_symbol_test
()
src/reader.rs:783
Functionsymbol_parser_normal_symbol_test
()
src/reader.rs:779
Functiontest_intern
()
src/symbol.rs:122
Functiontest_intern_with_ns
()
src/symbol.rs:134
Functiontest_only_vararg
()
src/lambda.rs:86
Functiontest_persistent_list_count
()
src/persistent_list.rs:211
Functiontest_vararg_one
()
src/lambda.rs:113
Functiontest_vararg_two
()
src/lambda.rs:148
Functiontest_with_meta
()
src/symbol.rs:185
Functiontest_work_with_hashmap
()
src/symbol.rs:207
Methodto_value
(&self)
src/lambda.rs:16
Methodto_value
(&self)
src/rust_core/load_file.rs:20
Methodto_value
(&self)
src/rust_core/str.rs:10
← previousnext →301–400 of 479, ranked by callers