microsoft/qdk
Publicmirrored fromhttps://github.com/microsoft/qdkAvailable
library/std/src/legacy_api.qs
18lines · modecode
| 1 | // Copyright (c) Microsoft Corporation. |
| 2 | // Licensed under the MIT License. |
| 3 | |
| 4 | |
| 5 | // This file re-exports the standard library under the name `Std`, which will be the preferred standard library API going forward. |
| 6 | |
| 7 | namespace Microsoft.Quantum { |
| 8 | export Std.Arrays, Std.Convert, Std.Diagnostics, Std.Logical, Std.Math, Std.Measurement, Std.Intrinsic, Std.Random, Std.ResourceEstimation, Std.Canon; |
| 9 | } |
| 10 | |
| 11 | namespace Microsoft.Quantum.Core { |
| 12 | import Std.Range.*; |
| 13 | export RangeStart, RangeEnd, IsRangeEmpty, Length, Repeated; |
| 14 | } |
| 15 | |
| 16 | namespace Microsoft.Quantum.Unstable { |
| 17 | export Std.Arithmetic, Std.StatePreparation, Std.TableLookup; |
| 18 | } |
| 19 | |