microsoft/qdk

Public

mirrored fromhttps://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
fedimser/memory-re

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

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
7namespace 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
11namespace Microsoft.Quantum.Core {
12 import Std.Range.*;
13 export RangeStart, RangeEnd, IsRangeEmpty, Length, Repeated;
14}
15
16namespace Microsoft.Quantum.Unstable {
17 export Std.Arithmetic, Std.StatePreparation, Std.TableLookup;
18}
19