mp_ptr.Item Property

GMP Native Interface for .NET

mp_ptrItem Property
Gets or sets the value of the limb at index.

Namespace:  Math.Gmp.Native
Assembly:  Math.Gmp.Native (in Math.Gmp.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public mp_limb_t this[
	int index
] { get; set; }
Public Default Property Item ( 
	index As Integer
) As mp_limb_t
	Get
	Set
public:
property mp_limb_t default[int index] {
	mp_limb_t get (int index);
	void set (int index, mp_limb_t value);
}
member Item : mp_limb_t with get, set

Parameters

index
Type: SystemInt32
The zero-based index of the limb to get or set.

Return Value

Type: mp_limb_t
See Also