Movatterモバイル変換


[0]ホーム

URL:


menu
  1. Dart
  2. dart:html
  3. SourceBufferList class
SourceBufferList
description

SourceBufferList class

Inheritance
Implemented types
Mixed-in types
Annotations
  • @Native.new("SourceBufferList")

Properties

firstSourceBuffer
The first element.
getter/setter pairinherited-setteroverride-getter
hashCodeint
The hash code for this object.
no setterinherited
isEmptybool
Whether this collection has no elements.
no setterinherited
isNotEmptybool
Whether this collection has at least one element.
no setterinherited
iteratorIterator<SourceBuffer>
A newIterator that allows iterating the elements of thisIterable.
no setterinherited
lastSourceBuffer
The last element.
getter/setter pairinherited-setteroverride-getter
lengthint
The number of objects in this list.
getter/setter pairoverride
onEvents
This is an ease-of-use accessor for event streams which should only beused when an explicit accessor is not available.
no setterinherited
reversedIterable<SourceBuffer>
AnIterable of the objects in this list in reverse order.
no setterinherited
runtimeTypeType
A representation of the runtime type of the object.
no setterinherited
singleSourceBuffer
Checks that this iterable has only one element, and returns that element.
no setteroverride

Methods

add(SourceBuffervalue)→ void
Addsvalue to the end of this list,extending the length by one.
inherited
addAll(Iterable<SourceBuffer>iterable)→ void
Appends all objects ofiterable to the end of this list.
inherited
addEventListener(Stringtype,EventListener?listener, [bool?useCapture])→ void
inherited
any(booltest(SourceBufferelement))bool
Checks whether any element of this iterable satisfiestest.
inherited
asMap()Map<int,SourceBuffer>
An unmodifiableMap view of this list.
inherited
cast<R>()List<R>
Returns a view of this list as a list ofR instances.
inherited
clear()→ void
Removes all objects from this list; the length of the list becomes zero.
inherited
contains(Object?element)bool
Whether the collection contains an element equal toelement.
inherited
dispatchEvent(Eventevent)bool
inherited
elementAt(intindex)SourceBuffer
Returns theindexth element.
override
every(booltest(SourceBufferelement))bool
Checks whether every element of this iterable satisfiestest.
inherited
expand<T>(Iterable<T>f(SourceBufferelement))Iterable<T>
Expands each element of thisIterable into zero or more elements.
inherited
fillRange(intstart,intend, [SourceBuffer?fillValue])→ void
Overwrites a range of elements withfillValue.
inherited
firstWhere(booltest(SourceBufferelement), {SourceBufferorElse()?})SourceBuffer
The first element that satisfies the given predicatetest.
inherited
fold<T>(TinitialValue,Tcombine(TpreviousValue,SourceBufferelement))→ T
Reduces a collection to a single value by iteratively combining eachelement of the collection with an existing value
inherited
followedBy(Iterable<SourceBuffer>other)Iterable<SourceBuffer>
Creates the lazy concatenation of this iterable andother.
inherited
forEach(voidaction(SourceBufferelement))→ void
Invokesaction on each element of this iterable in iteration order.
inherited
getRange(intstart,intend)Iterable<SourceBuffer>
Creates anIterable that iterates over a range of elements.
inherited
indexOf(Object?element, [intstart =0])int
The first index ofelement in this list.
inherited
indexWhere(booltest(SourceBufferelement), [intstart =0])int
The first index in the list that satisfies the providedtest.
inherited
insert(intindex,SourceBufferelement)→ void
Insertselement at positionindex in this list.
inherited
insertAll(intindex,Iterable<SourceBuffer>iterable)→ void
Inserts all objects ofiterable at positionindex in this list.
inherited
item(intindex)SourceBuffer
join([Stringseparator =""])String
Converts each element to aString and concatenates the strings.
inherited
lastIndexOf(Object?element, [int?start])int
The last index ofelement in this list.
inherited
lastIndexWhere(booltest(SourceBufferelement), [int?start])int
The last index in the list that satisfies the providedtest.
inherited
lastWhere(booltest(SourceBufferelement), {SourceBufferorElse()?})SourceBuffer
The last element that satisfies the given predicatetest.
inherited
map<T>(Tf(SourceBufferelement))Iterable<T>
The current elements of this iterable modified bytoElement.
inherited
noSuchMethod(Invocationinvocation)→ dynamic
Invoked when a nonexistent method or property is accessed.
inherited
reduce(SourceBuffercombine(SourceBufferpreviousValue,SourceBufferelement))SourceBuffer
Reduces a collection to a single value by iteratively combining elementsof the collection using the provided function.
inherited
remove(Object?object)bool
Removes the first occurrence ofvalue from this list.
inherited
removeAt(intpos)SourceBuffer
Removes the object at positionindex from this list.
inherited
removeEventListener(Stringtype,EventListener?listener, [bool?useCapture])→ void
inherited
removeLast()SourceBuffer
Removes and returns the last object in this list.
inherited
removeRange(intstart,intend)→ void
Removes a range of elements from the list.
inherited
removeWhere(booltest(SourceBufferelement))→ void
Removes all objects from this list that satisfytest.
inherited
replaceRange(intstart,intend,Iterable<SourceBuffer>iterable)→ void
Replaces a range of elements with the elements ofreplacements.
inherited
retainWhere(booltest(SourceBufferelement))→ void
Removes all objects from this list that fail to satisfytest.
inherited
setAll(intindex,Iterable<SourceBuffer>iterable)→ void
Overwrites elements with the objects ofiterable.
inherited
setRange(intstart,intend,Iterable<SourceBuffer>iterable, [intskipCount =0])→ void
Writes some elements ofiterable into a range of this list.
inherited
shuffle([Random?random])→ void
Shuffles the elements of this list randomly.
inherited
singleWhere(booltest(SourceBufferelement), {SourceBufferorElse()?})SourceBuffer
The single element that satisfiestest.
inherited
skip(intcount)Iterable<SourceBuffer>
Creates anIterable that provides all but the firstcount elements.
inherited
skipWhile(booltest(SourceBufferelement))Iterable<SourceBuffer>
Creates anIterable that skips leading elements whiletest is satisfied.
inherited
sort([intcompare(SourceBuffera,SourceBufferb)?])→ void
Sorts this list according to the order specified by thecompare function.
inherited
sublist(intstart, [int?end])List<SourceBuffer>
Returns a new list containing the elements betweenstart andend.
inherited
take(intcount)Iterable<SourceBuffer>
Creates a lazy iterable of thecount first elements of this iterable.
inherited
takeWhile(booltest(SourceBufferelement))Iterable<SourceBuffer>
Creates a lazy iterable of the leading elements satisfyingtest.
inherited
toList({boolgrowable =true})List<SourceBuffer>
Creates aList containing the elements of thisIterable.
inherited
toSet()Set<SourceBuffer>
Creates aSet containing the same elements as this iterable.
inherited
toString()String
A string representation of this object.
inherited
where(booltest(SourceBufferelement))Iterable<SourceBuffer>
Creates a new lazyIterable with all elements that satisfy thepredicatetest.
inherited
whereType<T>()Iterable<T>
Creates a new lazyIterable with all elements that have typeT.
inherited

Operators

operator +(List<SourceBuffer>other)List<SourceBuffer>
Returns the concatenation of this list andother.
inherited
operator ==(Objectother)bool
The equality operator.
inherited
operator [](intindex)SourceBuffer
The object at the givenindex in the list.
override
operator []=(intindex,SourceBuffervalue)→ void
Sets the value at the givenindex in the list tovalue.
override
  1. Dart
  2. dart:html
  3. SourceBufferList class
dart:html library

[8]ページ先頭

©2009-2025 Movatter.jp