From d56e777025f3bda29feaec22c125b0e7ab975e0c Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sun, 14 Dec 2025 16:52:57 +0100 Subject: Format, make map equatable --- Sources/WmapParser/DataStructures/Map.swift | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'Sources/WmapParser/DataStructures/Map.swift') diff --git a/Sources/WmapParser/DataStructures/Map.swift b/Sources/WmapParser/DataStructures/Map.swift index dbb3c7d..776ba18 100644 --- a/Sources/WmapParser/DataStructures/Map.swift +++ b/Sources/WmapParser/DataStructures/Map.swift @@ -1,12 +1,12 @@ extension WmapParser { -/// A parsed wardley map. -public struct Map: Sendable { - public let components: [Component] - public let dependencies: [Dependency] - public let notes: [Note] - public let stages: [Stage] - public let groups: [Group] - public let inertias: [Inertia] - public let evolutions: [Evolution] -} + /// A parsed wardley map. + public struct Map: Sendable, Equatable { + public let components: [Component] + public let dependencies: [Dependency] + public let notes: [Note] + public let stages: [Stage] + public let groups: [Group] + public let inertias: [Inertia] + public let evolutions: [Evolution] + } } -- cgit