Fyne API "binding.RuneList"

binding.RuneList


import "fyne.io/fyne/v2/data/binding"

Usage

type RuneList

type RuneList interface {
	DataList

	Append(rune) error
	Get() ([]rune, error)
	GetValue(int) (rune, error)
	Prepend(rune) error
	Set([]rune) error
	SetValue(int, rune) error
}

RuneList supports binding a list of rune values.

Since: 2.0

func NewRuneList

func NewRuneList() RuneList

NewRuneList returns a bindable list of rune values.

Since: 2.0