Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/clojure-rs/ClojureRS
/ functions
Functions
479 in github.com/clojure-rs/ClojureRS
⨍
Functions
479
◇
Types & classes
94
Function
is_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
Function
is_minus_char
Returns true if given character is a minus character - `-`,
src/reader.rs:174
Function
is_nil_blank
()
src/clojure_string/blank_qmark_.rs:84
Function
is_non_empty_string_blank
()
src/clojure_string/blank_qmark_.rs:52
Function
is_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
Function
is_period_char
Returns true if given character is a period character - `-`,
src/reader.rs:180
Function
is_string_with_whitespace_and_text_blank
()
src/clojure_string/blank_qmark_.rs:76
Function
is_string_with_whitespace_only_blank
()
src/clojure_string/blank_qmark_.rs:68
Function
join_empty_collection_to_empty_string
()
src/clojure_string/join.rs:62
Function
join_multiple_items_in_collection_to_string
()
src/clojure_string/join.rs:83
Function
join_multiple_items_in_collection_with_separator_to_string
()
src/clojure_string/join.rs:102
Function
join_multiple_items_in_pvec_collection_with_separator_to_string
()
src/clojure_string/join.rs:124
Function
join_one_item_collection_to_string
()
src/clojure_string/join.rs:71
Function
lower_case_string
()
src/clojure_string/lower_case.rs:38
Function
main
()
src/main.rs:35
Method
merge_referred_syms
@TODO refactor the referred syms vector to use a set instead
src/namespace.rs:86
Method
meta
(&self)
src/persistent_list_map.rs:242
Method
meta
(&self)
src/persistent_list.rs:102
Method
meta
(&self)
src/persistent_vector.rs:16
Method
meta
(&self)
src/var.rs:105
Method
meta
(&self)
src/protocols/imeta.rs:20
Function
more_on_empty_iterable
()
src/rust_core/more.rs:48
Function
more_on_iterable_with_one_value_list
()
src/rust_core/more.rs:60
Function
more_on_iterable_with_three_value_list
()
src/rust_core/more.rs:74
Function
more_on_non_iterable_value
()
src/rust_core/more.rs:97
Function
multiply_with_one_argument_returns_identity
()
src/rust_core/_multiply_.rs:60
Function
multiply_with_two_argument_returns_product
()
src/rust_core/_multiply_.rs:67
Function
multiply_without_arguments_returns_one
()
src/rust_core/_multiply_.rs:53
Method
name
(&self)
src/symbol.rs:69
Method
name
(&self)
src/keyword.rs:11
Method
new
(environment: Rc<Environment>)
src/repl.rs:16
Method
new
(namespaces: Vec<Symbol>, syms: HashMap<Symbol, Vec<Symbol>>)
src/namespace.rs:51
Method
new
(enclosing_environment: Rc<Environment>)
src/rust_core/load_file.rs:13
Method
new
(enclosing_environment: Rc<Environment>)
src/rust_core/eval.rs:15
Method
new
(enclosing_environment: Rc<Environment>)
src/rust_core/refer.rs:20
Method
new
(enclosing_environment: Rc<Environment>)
src/rust_core/with_meta.rs:20
Method
new
(enclosing_environment: Rc<Environment>)
src/rust_core/ns.rs:14
Method
new
(enclosing_environment: Rc<Environment>)
src/rust_core/meta.rs:21
Method
new
(enclosing_environment: Rc<Environment>)
src/rust_core/special_form/var.rs:15
Method
new_local_environment
(outer_environment: Rc<Environment>)
src/environment.rs:178
Method
new_main_environment
()
src/environment.rs:175
Method
new_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
Function
new_namespace_starts_empty
()
src/namespace.rs:699
Function
new_removes_namespace_from_qualified_symbol
()
src/namespace.rs:688
Function
new_with_empty_refers
()
src/namespace.rs:439
Method
next
(&mut self)
src/persistent_list_map.rs:199
Method
next
(&mut self)
src/persistent_list.rs:174
Method
next
(&mut self)
src/persistent_vector.rs:89
Function
one_is_greater_than_zero
()
src/rust_core/gte.rs:57
Function
one_is_greater_than_zero
()
src/rust_core/gt.rs:57
Function
one_is_gte_than_one
()
src/rust_core/gte.rs:64
Function
one_is_less_than_one_and_fractions
()
src/rust_core/lt.rs:71
Function
one_is_lte_than_one
()
src/rust_core/lte.rs:64
Function
one_is_lte_than_one_and_fractions
()
src/rust_core/lte.rs:71
Function
one_is_not_greater_than_one
()
src/rust_core/gt.rs:64
Function
one_is_not_greater_than_one_and_fractions
()
src/rust_core/gt.rs:71
Function
one_is_not_gte_than_one_and_fractions
()
src/rust_core/gte.rs:71
Function
one_is_not_less_than_one
()
src/rust_core/lt.rs:64
Function
parses_args_given_e
()
src/user_action.rs:80
Function
parses_args_given_eval
()
src/user_action.rs:94
Function
parses_args_given_i
()
src/user_action.rs:52
Function
parses_args_given_init
()
src/user_action.rs:66
Function
parses_args_given_nil
()
src/user_action.rs:108
Function
parses_args_given_path
()
src/user_action.rs:40
Function
persistent_list_map
()
src/persistent_list_map.rs:282
Function
plus_with_one_argument_returns_identity
()
src/rust_core/_plus_.rs:60
Function
plus_with_two_argument_returns_product
()
src/rust_core/_plus_.rs:67
Function
plus_without_arguments_returns_zero
()
src/rust_core/_plus_.rs:53
Method
read
Just wraps reader's read
src/repl.rs:28
Function
read_string
()
src/repl.rs:105
Method
read_string
@TODO add to reader.rs and wrap here
src/repl.rs:32
Function
rem_with_two_integer_argument_returns_remainder
()
src/rust_core/rem.rs:76
Function
rem_without_arguments_returns_error
()
src/rust_core/rem.rs:64
Function
reverse_string
()
src/clojure_string/reverse.rs:38
Function
second_on_empty_iterable
()
src/rust_core/second.rs:46
Function
second_on_iterable_with_two_value_list
()
src/rust_core/second.rs:55
Function
second_on_non_iterable_value
()
src/rust_core/second.rs:67
Function
split_by_comma
()
src/clojure_string/split.rs:57
Function
split_by_comma_not_in_string
()
src/clojure_string/split.rs:80
Function
split_by_doublequotes
()
src/clojure_string/split.rs:99
Function
subtract_with_multiple_arguments_returns_difference_case1
()
src/rust_core/_subtract_.rs:114
Function
subtract_with_multiple_arguments_returns_difference_case2
()
src/rust_core/_subtract_.rs:126
Function
subtract_with_one_negative_argument_returns_positive_value
()
src/rust_core/_subtract_.rs:93
Function
subtract_with_one_positive_argument_returns_negated_value
()
src/rust_core/_subtract_.rs:86
Function
subtract_with_two_argument_returns_negative_difference
()
src/rust_core/_subtract_.rs:100
Function
subtract_with_two_argument_returns_positive_difference
()
src/rust_core/_subtract_.rs:107
Function
subtract_without_arguments_returns_one
()
src/rust_core/_subtract_.rs:74
Function
symbol_parser_namespace_qualified_symbol_test
()
src/reader.rs:783
Function
symbol_parser_normal_symbol_test
()
src/reader.rs:779
Function
test_intern
()
src/symbol.rs:122
Function
test_intern_with_ns
()
src/symbol.rs:134
Function
test_only_vararg
()
src/lambda.rs:86
Function
test_persistent_list_count
()
src/persistent_list.rs:211
Function
test_vararg_one
()
src/lambda.rs:113
Function
test_vararg_two
()
src/lambda.rs:148
Function
test_with_meta
()
src/symbol.rs:185
Function
test_work_with_hashmap
()
src/symbol.rs:207
Method
to_value
(&self)
src/lambda.rs:16
Method
to_value
(&self)
src/rust_core/load_file.rs:20
Method
to_value
(&self)
src/rust_core/str.rs:10
← previous
next →
301–400 of 479, ranked by callers