Movatterモバイル変換


[0]ホーム

URL:


menu
  1. Dart
  2. dart:html
  3. PluginArray
  4. operator [] method
operator []
description

operator [] method

Pluginoperator [](
  1. intindex
)
override

The object at the givenindex in the list.

Theindex must be a valid index of this list,which means thatindex must be non-negative andless thanlength.

Implementation

Plugin operator [](int index) {  if (JS("bool", "# >>> 0 !== # || # >= #", index, index, index, length))    throw new IndexError.withLength(index, length, indexable: this);  return JS("Plugin", "#[#]", this, index);}
  1. Dart
  2. dart:html
  3. PluginArray
  4. operator [] method
PluginArray class

[8]ページ先頭

©2009-2025 Movatter.jp