Package-level declarations

Functions

Link copied to clipboard

Disable an option given its key. This sets the option's value to "false".

Link copied to clipboard

Disable a group of options given their keys. This sets each option's value to "false".

Link copied to clipboard

Enable an option given its key. This sets the option's value to "true".

Link copied to clipboard

Enable a group of options given their keys. This sets each option's value to "true".

Link copied to clipboard

Configure an option given its key and a boolean value. The value will be converted to "true" or "false".

Link copied to clipboard
@JvmName(name = "setBooleanOptions")
fun PolyglotContextBuilder.setOptions(vararg options: Pair<String, Boolean>)
@JvmName(name = "setBooleanOptions")
fun PolyglotEngineBuilder.setOptions(vararg options: Pair<String, Boolean>)

Configure a group of boolean options given a series of key-value pairs. Each value will be converted to "true" or "false" accordingly.

Configure a group of options given a series of key-value pairs.