|
| 1 | +/* |
| 2 | +* @license Apache-2.0 |
| 3 | +* |
| 4 | +* Copyright (c) 2021 The Stdlib Authors. |
| 5 | +* |
| 6 | +* Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | +* you may not use this file except in compliance with the License. |
| 8 | +* You may obtain a copy of the License at |
| 9 | +* |
| 10 | +* http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | +* |
| 12 | +* Unless required by applicable law or agreed to in writing, software |
| 13 | +* distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | +* See the License for the specific language governing permissions and |
| 16 | +* limitations under the License. |
| 17 | +*/ |
| 18 | + |
| 19 | +import reim = require( './index' ); |
| 20 | +import Complex128 = require( '@stdlib/complex/float64' ); |
| 21 | +import Complex64 = require( '@stdlib/complex/float32' ); |
| 22 | + |
| 23 | + |
| 24 | +// TESTS // |
| 25 | + |
| 26 | +// The function returns a floating-point typed array... |
| 27 | +{ |
| 28 | + reim( new Complex128( 5.0, 3.0 ) ); // $ExpectType Float64Array | Float32Array |
| 29 | + reim( new Complex64( 5.0, 3.0 ) ); // $ExpectType Float64Array | Float32Array |
| 30 | + reim( { 're': 5.0, 'im': 3.0 } ); // $ExpectType Float64Array | Float32Array |
| 31 | +} |
| 32 | + |
| 33 | +// The compiler throws an error if the function is provided an argument that is not a complex number... |
| 34 | +{ |
| 35 | + reim( 'abc' ); // $ExpectError |
| 36 | + reim( 123 ); // $ExpectError |
| 37 | + reim( true ); // $ExpectError |
| 38 | + reim( false ); // $ExpectError |
| 39 | + reim( [] ); // $ExpectError |
| 40 | + reim( {} ); // $ExpectError |
| 41 | + reim( ( x: number ): number => x ); // $ExpectError |
| 42 | +} |
| 43 | + |
| 44 | +// The compiler throws an error if the function is provided an unsupported number of arguments... |
| 45 | +{ |
| 46 | + reim(); // $ExpectError |
| 47 | + reim( new Complex128( 5.0, 3.0 ), 123 ); // $ExpectError |
| 48 | +} |
0 commit comments