Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-09-17 08:54:11

0001 /*
0002  * SPDX-PackageName: "covfie, a part of the ACTS project"
0003  * SPDX-FileCopyrightText: 2022 CERN
0004  * SPDX-License-Identifier: MPL-2.0
0005  */
0006 
0007 #pragma once
0008 
0009 #include <covfie/core/array.hpp>
0010 
0011 namespace covfie::utility {
0012 template <std::size_t N>
0013 using nd_size = array::array<std::size_t, N>;
0014 }