From 088e03708afe4145a1903f0b20c53cab1899ad50 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Wed, 14 May 2025 00:02:39 +0200 Subject: Add array --- asl/types/BUILD.bazel | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'asl/types/BUILD.bazel') diff --git a/asl/types/BUILD.bazel b/asl/types/BUILD.bazel index 16a2a7a..134601b 100644 --- a/asl/types/BUILD.bazel +++ b/asl/types/BUILD.bazel @@ -6,6 +6,18 @@ package( default_applicable_licenses = ["//:license"], ) +cc_library( + name = "array", + hdrs = [ + "array.hpp", + ], + deps = [ + "//asl/base", + "//asl/types:span", + ], + visibility = ["//visibility:public"], +) + cc_library( name = "box", hdrs = [ @@ -124,6 +136,16 @@ cc_test( ], ) +cc_test( + name = "array_tests", + srcs = ["array_tests.cpp"], + deps = [ + "//asl/tests:utils", + "//asl/testing", + "//asl/types:array", + ], +) + cc_test( name = "box_tests", srcs = ["box_tests.cpp"], -- cgit