We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(related to #4)
functions and their arguments, eg:
module.set("to_camel_case", lua.createfunction(|, text: String| {...
module.set("to_table", lua.create_function(|lua, text: String| {...
these functions exist and they take strings named 'text'
module.set("match", lua.create_function(|_, (expr, val): (String, String)|
module.set("replace_all", lua.create_function(|_, (expr, val, patt): (String, String, String)| {
these have two and three arguments
The text was updated successfully, but these errors were encountered:
the arguments aren't captured fully eg
regex match (String)) ⇒
regex.match takes an expr and val, which are both strings and I think it gives back some result(?)
expr
val
result
and if they're grouped by folder, I think it'll help a lot
Sorry, something went wrong.
e181efe fixes the regex arguments parsing
No branches or pull requests
(related to #4)
functions and their arguments, eg:
module.set("to_camel_case", lua.createfunction(|, text: String| {...
module.set("to_table", lua.create_function(|lua, text: String| {...
these functions exist and they take strings named 'text'
module.set("match", lua.create_function(|_, (expr, val): (String, String)|
module.set("replace_all", lua.create_function(|_, (expr, val, patt): (String, String, String)| {
these have two and three arguments
The text was updated successfully, but these errors were encountered: