RangeStep function

Warning

This documentation refers to the Classic QDK, which has been replaced by the Modern QDK.

Please see https://aka.ms/qdk.api for the API documentation for the Modern QDK.

Namespace: Microsoft.Quantum.Core

Package: Microsoft.Quantum.QSharp.Foundation

Returns the integer that specifies how the next value of a range is calculated.

function RangeStep (range : Range) : Int

Input

range : Range

Input range.

Output : Int

The defined step value of the given range.

Remarks

A range expression's first element is start, its second element is start+step, third element is start+step+step, etc., until end is passed.