Skip to content

Commit bd051c5

Browse files
feat(data-structures): stabilize Deque (#7092)
1 parent b2b5526 commit bd051c5

5 files changed

Lines changed: 63 additions & 90 deletions

File tree

async/unstable_channel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright 2018-2026 the Deno authors. MIT license.
22
// This module is browser compatible.
33

4-
import { Deque } from "@std/data-structures/unstable-deque";
4+
import { Deque } from "@std/data-structures/deque";
55

66
const RESOLVED: Promise<void> = Promise.resolve();
77

data_structures/deno.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
"./binary-search-tree": "./binary_search_tree.ts",
99
"./unstable-binary-search-tree": "./unstable_binary_search_tree.ts",
1010
"./comparators": "./comparators.ts",
11+
"./deque": "./deque.ts",
1112
"./red-black-tree": "./red_black_tree.ts",
1213
"./unstable-2d-array": "./unstable_2d_array.ts",
13-
"./unstable-rolling-counter": "./unstable_rolling_counter.ts",
14-
"./unstable-deque": "./unstable_deque.ts"
14+
"./unstable-rolling-counter": "./unstable_rolling_counter.ts"
1515
}
1616
}

0 commit comments

Comments
 (0)