TYPED ARRAY Meaning in Japanese - translations and usage examples

[taipt ə'rei]
[taipt ə'rei]
arrayタイプは

Examples of using Typed array in English and their translations into Japanese

{-}
  • Colloquial category close
  • Ecclesiastic category close
  • Computer category close
  • Programming category close
Typed Arrays.
Without arguments, creates an zero-length typed array.
引数がなければ、長さゼロの型付き配列を作成します。
Note that typed array views are always in the native byte order.
型付き配列ビューは常にネイティブのバイトオーダーになることに注意してください。
I'm going to create one of each currently existing typed array views in the next example.
次の例では現在存在する型付き配列ビューを作成しています。
Typed array views are in the native byte-order(see Endianness) of your platform.
型付き配列のビューは、プラットフォームのネイティブのバイトオーダ(Endianness)になります。
Includes() Determines whether a typed array includes a certain element.
Includes()typedarrayがある要素を含むかどうか判断します。
To set the contents of a WebGL buffer object, you use the gl. bufferData()call with a Typed Array.
WebGLバッファオブジェクトの内容を設定するためにはgl.bufferData()を型付き配列と共に使用します。
For a numeric argument length- creates the typed array to contain that many elements.
数値引数の場合はlengthであり、その数の要素を含む型付き配列を作成します。
To copy a typed array to another typed array, the fastest way is to use the typed array set method.
ある型付き配列から別の型付き配列にコピーするには、型付き配列のsetメソッドを使うと最速で行えます。
The current levels of performance of the typed array views were made possible by this design decision.
現在の型付き配列ビューのパフォーマンスレベルはこの設計上の決定によって可能になりました。
A typed array constructor(be it Int8Array or Float64Array, doesn't matter) behaves differently depending on argument types..
型付き配列のコンストラクタ(Int8ArrayでもFloat64Arrayでも構いません)は、引数の種類に応じて異なる振る舞いをします。
If another TypedArray is supplied, it does the same:creates a typed array of the same length and copies values.
別のTypedArrayが与えられた場合も同じです:同じ長さの型付き配列を生成し、値をコピーします。
The other way to create typed array views is to create an ArrayBuffer first and then create views that point to it.
別の型付き配列ビューを作成する方法は、最初にArrayBufferを作成しておき、それを指すビューを作成することです。
Media Source API Recently,the media elements also got some Typed Array goodness in the form of the Media Source API.
MediaSourceAPI最近ではメディア要素もMediaSourceAPIからいくつかの型付き配列の恩恵を得ました。
This was a test of typed array code, and if you access outside of the bounds of a typed array, then it should give you a range error.gt;gt;An exception.
型付き配列の範囲の外の要素を参照しようとすると範囲の例外を返すべきです範囲エラーのことです。
The design split between in-memory data assembly(using the typed array views) and I/O(using DataView) was a conscious one.
設計はインメモリデータアセンブリ(型付き配列ビュー)とI/O(DataView)の間で分けられています。
Validate() Validates a given typed array of WebAssembly binary code, returning whether the bytes are valid WebAssembly code(true) or not false.
Validate()WebAssemblyバイナリコードの型付き配列を検証し、バイト列が有効なWebAssemblyコードか(true)否か(false)を返します。
If an Array, or any array-like object is given,it creates a typed array of the same length and copies the content.
Arrayまたは配列ライクなオブジェクトが与えられた場合は、同じ長さの型付き配列を生成し、内容をコピーします。
The Float32Array typed array represents an array of 32-bit floating point numbers(corresponding to the C float data type) in the platform byte order.
Float32Arrayタイプは、32ビット浮動小数点数(C言語のfloatデータタイプに相当します)の配列を表します。
Help us translate this article! The Uint8Array typed array represents an array of 8-bit unsigned integers.
Uint8Array-JavaScript|MDNUint8Arrayタイプは、8ビット符号なし整数値の配列を表します。
XMLHttpRequest got a Typed Array boost and now you can receive a Typed Array response instead of having to parse a JavaScript string into a Typed Array..
XMLHttpRequestと型付き配列の関係が強まりました。現在、JavaScriptの文字列をパースせず直接型付き配列を受信することができます。
Read the individual numeric values and store them in some other data structure,either a JavaScript object(for small amounts of structured data) or a typed array view for large blocks of data.
個々の数値を読み込み、JavaScriptオブジェクト(構造化された小さなデータの場合)や型付き配列ビュー(大きなデータブロックの場合)に格納します。
Modern JavaScript engines optimize the typed array views heavily, and achieve high performance on numerical operations with them.
モダンJavaScriptエンジンは型付き配列ビューを重点的に最適化して、数値演算において高いパフォーマンスを実現しています。
Typed array views Typed array views have self descriptive names and provide views for all the usual numeric types like Int8, Uint32, Float64 and so forth.
型付き配列ビュー型付き配列ビューは自己記述的な名前を持っていて、そのすべてがInt8,Uint32,Float64などといったよく見られる数値型用のビューを提供しています。
Uint16Array- JavaScript| MDN Summary The Uint16Array typed array represents an array of 16-bit unsigned integers in the platform byte order.
Uint16Array-JavaScript|MDN概要Uint16Arrayタイプは、16ビット符号なし整数値の配列を表します。
A Typed Array is a slab of memory with a typed view into it, much like how arrays work in C. Because a Typed Array is backed by raw memory, the JavaScript engine can pass the memory directly to native libraries without having to painstakingly convert the data to a native representation.
型付き配列はC言語の配列のようにメモリのバッファに対して型ビューを使ってアクセスします。型付き配列は生のメモリにデータが保存されるため、JavaScriptエンジンはネイティブライブラリに直接メモリ上のデータを渡すことができます。
You can't directly manipulate the contents of an ArrayBuffer; instead,you create a typed array view or a DataView which represents the buffer in a specific format, and use that to read and write the contents of the buffer.
ArrayBufferの内容は直接操作できません。かわりに、型付き配列ビューか特定のフォーマットでバッファを表すDataViewを生成し、それらをバッファの内容の読み書きに使用します。
Buffers and views: typed array architecture To achieve maximum flexibility and efficiency, JavaScript typed arrays split the implementation into buffers and views.
バッファとビュー:型付き配列のアーキテクチャ最大の柔軟性と効率性を達成するため、JavaScript型付き配列の実装をバッファとビューに分離しました。
As part of the ECMAScript 2015(ES6) compliance,Firefox now throws a TypeError if one of the typed array constructors, including Uint8Array, Int16Array and Float64Array, or ArrayBuffer is called without using the new operator.
ECMAScript2015(ES6)準拠の一環として、Uint8Array、Int16Array、Float64Arrayなどの型付き配列コンストラクターのいずれか、あるいはArrayBufferがnew演算子なしで呼び出された場合に、Firefox はTypeErrorを投げるようになりました。
It's not a good idea to use the multi-byte typed array views(Int16Array, Uint16Array, etc.) directly with data fetched via XMLHttpRequest, FileReader, or any other input/output API, because the typed array views use the CPU's native endianness.
XMLHttpRequest、FileReaderや他のinput/outputAPIでマルチバイトの型付き配列ビュー(Int16Array,Uint16Arrayなど)を使用することはお勧めしません。なぜなら型付き配列ビューはCPUネイティブのエンディアンを使用するからです。
Results: 38, Time: 0.0304

Word-for-word translation

Top dictionary queries

English - Japanese