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
How to add static property and method?
pub fn hello( q: String) -> String { format!("hello {}", q) }
The text was updated successfully, but these errors were encountered:
@arshidkv12 I believe just that should work for static methods. From the docs:
Class methods can take a &self or &mut self parameter. They cannot take a consuming self parameter. Static methods can omit this self parameter.
&self
&mut self
self
Sorry, something went wrong.
I want code as follows.
PHP
class my class{ static $a = 1; public static function hello(){ } }
No branches or pull requests
How to add static property and method?
The text was updated successfully, but these errors were encountered: