From 4611d181a8d8ffa3337697dd239ec4756818c50a Mon Sep 17 00:00:00 2001 From: Jen Basch Date: Tue, 24 Feb 2026 08:09:52 -0800 Subject: [PATCH] Remove broken `Collection.transpose` method (#1437) --- stdlib/base.pkl | 8 -------- 1 file changed, 8 deletions(-) diff --git a/stdlib/base.pkl b/stdlib/base.pkl index 23dd37c3..d1e40709 100644 --- a/stdlib/base.pkl +++ b/stdlib/base.pkl @@ -2959,14 +2959,6 @@ abstract external class Collection extends Any { /// ``` abstract function zip(coll: Collection): Collection> - /// Transposes this two-dimensional collection of collections. - /// - /// The *n*th row of the resulting collection corresponds to the - /// *n*th column of this collection. - /// Throws if an element of this collection is not itself a collection. - /* Note: Can't specify return type precisely. */ - abstract function transpose(): Collection - /// Converts the elements of this collection to strings and concatenates them inserting /// [separator] between elements. abstract function join(separator: String): String