Skip to content
This repository was archived by the owner on Jan 12, 2024. It is now read-only.

Commit 159f761

Browse files
authored
Details or example lacking for ResultArrayAsInt function #635 (#636)
* Update Convert.qs * Update Convert.qs
1 parent f450c22 commit 159f761

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Standard/src/Convert/Convert.qs

+9
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,15 @@ namespace Microsoft.Quantum.Convert {
119119
/// # Input
120120
/// ## results
121121
/// Results in binary representation of number.
122+
///
123+
/// # Output
124+
/// A non-negative integer
125+
///
126+
/// # Example
127+
/// ```qsharp
128+
/// // The following returns 1
129+
/// let int1 = ResultArrayAsInt([One,Zero])
130+
/// ```
122131
function ResultArrayAsInt(results : Result[]) : Int {
123132
return BoolArrayAsInt(ResultArrayAsBoolArray(results));
124133
}

0 commit comments

Comments
 (0)