Add KDoc comment

This commit is contained in:
Iaroslav Postovalov 2020-10-31 21:44:52 +07:00
parent 6b71d8525d
commit 658a1703ed
No known key found for this signature in database
GPG Key ID: 46E15E4A31B3BCD7

View File

@ -9,6 +9,9 @@ package kscience.kmath.expressions
public interface DifferentiableExpression<T, R : Expression<T>> : Expression<T> {
/**
* Differentiates this expression by ordered collection of [symbols].
*
* @param symbols the symbols.
* @return the derivative or `null`.
*/
public fun derivativeOrNull(symbols: List<Symbol>): R?
}