Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DoubleMatcher

import type { DoubleMatcher } from "https://googleapis.deno.dev/v1/trafficdirector:v3.ts";

Specifies the way to match a double value.

interface DoubleMatcher {
exact?: number;
range?: DoubleRange;
}

§Properties

§
exact?: number
[src]

If specified, the input double value must be equal to the value specified here.

§

If specified, the input double value must be in the range specified here. Note: The range is using half-open interval semantics [start, end).