double

fun <S> LiteralNode<S>.double(name: String, block: ArgumentNode<S, Double>.() -> Unit)

Adds a double argument.


fun <S> LiteralNode<S>.double(name: String, min: Double, block: ArgumentNode<S, Double>.() -> Unit)

Adds a double argument with minimum min.


fun <S> LiteralNode<S>.double(name: String, min: Double, max: Double, block: ArgumentNode<S, Double>.() -> Unit)

Adds a double argument bounded to min..max.