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
For example, DensityFunctions are currently created with the following code:
densityFunction("my_density_function", abs(2.0))
It will be refactored as this:
densityFunction("my_density_function") { abs(2.0) }
Maybe investigate if it should throw an error if multiple functions for setting the type are used.
This will allow namespaces to be use simpler as every parameter of the Generator are usable from the lambda.
The text was updated successfully, but these errors were encountered:
Or use the same syntax as what's currently used by recipes generator:
densityFunctions { abs("my_density_function", 2.0) } val myDensityFunction = densityFunctionsBuilder.abs("my_density_function", 2.0)
Sorry, something went wrong.
Ayfri
No branches or pull requests
For example, DensityFunctions are currently created with the following code:
It will be refactored as this:
Maybe investigate if it should throw an error if multiple functions for setting the type are used.
This will allow namespaces to be use simpler as every parameter of the Generator are usable from the lambda.
The text was updated successfully, but these errors were encountered: