std.array.staticArray  - multiple declarations
				Function staticArray
Constructs a static array from a dynamic array whose length is known at compile-time. The element type can be inferred or specified explicitly:
						
				T[n] staticArray(T, ulong n)
				(
				
				  auto ref T[n] a
				
				);
				
				
				U[n] staticArray(U, T, ulong n)
				(
				
				  auto ref T[n] a
				
				)
				
				if (!is(T == U) && is(T : U));
						
					
				* [1, 2] returns int[2]
* [1, 2] returns float[2]
Note
staticArray returns by value, so expressions involving large arrays may be inefficient.
Parameters
| Name | Description | 
|---|---|
| a | The input array. | 
Returns
A static array constructed from a.
Example
static array from array literal
auto a = [0, 1]Example
static array from array with implicit casting of elements
auto b = [0, 1]Function staticArray
Constructs a static array from a range.
When a is not known at compile time, the number of elements must be
given as a template argument (e.g. myrange).
Size and type can be combined, if the source range elements are implicitly
convertible to the requested element type (eg: 2).
						
				auto staticArray(ulong n, T)
				(
				
				  scope T a
				
				)
				
				if (isInputRange!T);
				
				
				auto staticArray(ulong n, T)
				(
				
				  scope T a,
				
				  out size_t rangeLength
				
				)
				
				if (isInputRange!T);
				
				
				auto staticArray(Un, U, ulong n, T)
				(
				
				  scope T a
				
				)
				
				if (isInputRange!T && is(ElementType!T : U));
				
				
				auto staticArray(Un, U, ulong n, T)
				(
				
				  scope T a,
				
				  out size_t rangeLength
				
				)
				
				if (isInputRange!T && is(ElementType!T : U));
				
				
				auto staticArray(alias a)()
				
				if (isInputRange!(typeof(a)));
				
				
				auto staticArray(U, alias a)()
				
				if (isInputRange!(typeof(a)));
						
					
				When the range a is known at compile time, it can be given as a
template argument to avoid having to specify the number of elements
(e.g.: staticArray!(2 or staticArray!(double, 2).
Parameters
| Name | Description | 
|---|---|
| a | The input range. If there are less elements than the specified length of the static array, the rest of it is default-initialized. If there are more than specified, the first elements up to the specified length are used. | 
| rangeLength | Output for the number of elements used from a. Optional. | 
Example
static array from range + size
import stdExample
static array from CT range
import std