FloatReader

object FloatReader extends Reader[Float]
trait Reader[Float]
class Object
trait Matchable
class Any

Value members

Concrete methods

def read(a: String): Result[Float]
def show(a: Float): String

Inherited methods

A completer for bash. This is used by standalone bash completion, where a bash script generates completion, without the involvement of the the user program.

A completer for bash. This is used by standalone bash completion, where a bash script generates completion, without the involvement of the the user program.

If your program is implemented with Scala on the JVM, the startup time is considerable and hence standalone completion should be preferred for a snappy user experience.

Inherited from
Reader
def completer: String => Seq[String]

Compute available shell completions starting with a given string. This is used by embedded bash completion, where the user program is responsible for generating completions.

Compute available shell completions starting with a given string. This is used by embedded bash completion, where the user program is responsible for generating completions.

Inherited from
Reader