VectorRuntimeEffectChild

class VectorRuntimeEffectChild

Methods

__init__

__init__(*args, **kwargs) Overloaded function.

append

append(self: list[skia.RuntimeEffectChild], x: skia.RuntimeEffectChild) -> None

clear

clear(self: list[skia.RuntimeEffectChild]) -> None

extend

extend(*args, **kwargs) Overloaded function.

insert

insert(self: list[skia.RuntimeEffectChild], i: int, x: skia.RuntimeEffectChild) -> None

pop

pop(*args, **kwargs) Overloaded function.

Methods

VectorRuntimeEffectChild.__init__(*args, **kwargs)

Overloaded function.

  1. __init__(self: skia.VectorRuntimeEffectChild) -> None

  2. __init__(self: skia.VectorRuntimeEffectChild, arg0: list[skia.RuntimeEffectChild]) -> None

Copy constructor

  1. __init__(self: skia.VectorRuntimeEffectChild, arg0: Iterable) -> None

VectorRuntimeEffectChild.append(self: list[skia.RuntimeEffectChild], x: skia.RuntimeEffectChild) None

Add an item to the end of the list

VectorRuntimeEffectChild.clear(self: list[skia.RuntimeEffectChild]) None

Clear the contents

VectorRuntimeEffectChild.extend(*args, **kwargs)

Overloaded function.

  1. extend(self: list[skia.RuntimeEffectChild], L: list[skia.RuntimeEffectChild]) -> None

Extend the list by appending all the items in the given list

  1. extend(self: list[skia.RuntimeEffectChild], L: Iterable) -> None

Extend the list by appending all the items in the given list

VectorRuntimeEffectChild.insert(self: list[skia.RuntimeEffectChild], i: int, x: skia.RuntimeEffectChild) None

Insert an item at a given position.

VectorRuntimeEffectChild.pop(*args, **kwargs)

Overloaded function.

  1. pop(self: list[skia.RuntimeEffectChild]) -> skia.RuntimeEffectChild

Remove and return the last item

  1. pop(self: list[skia.RuntimeEffectChild], i: int) -> skia.RuntimeEffectChild

Remove and return the item at index i