1a1d56debSopenharmony_ci// Copyright (c) 2023 Huawei Device Co., Ltd.
2a1d56debSopenharmony_ci// Licensed under the Apache License, Version 2.0 (the "License");
3a1d56debSopenharmony_ci// you may not use this file except in compliance with the License.
4a1d56debSopenharmony_ci// You may obtain a copy of the License at
5a1d56debSopenharmony_ci//
6a1d56debSopenharmony_ci//     http://www.apache.org/licenses/LICENSE-2.0
7a1d56debSopenharmony_ci//
8a1d56debSopenharmony_ci// Unless required by applicable law or agreed to in writing, software
9a1d56debSopenharmony_ci// distributed under the License is distributed on an "AS IS" BASIS,
10a1d56debSopenharmony_ci// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11a1d56debSopenharmony_ci// See the License for the specific language governing permissions and
12a1d56debSopenharmony_ci// limitations under the License.
13a1d56debSopenharmony_ci
14a1d56debSopenharmony_ci#[cfg(feature = "list_array")]
15a1d56debSopenharmony_cimod linked_list;
16a1d56debSopenharmony_ci#[cfg(feature = "list_array")]
17a1d56debSopenharmony_cipub use linked_list::Array;
18a1d56debSopenharmony_ci
19a1d56debSopenharmony_ci#[cfg(feature = "vec_array")]
20a1d56debSopenharmony_cimod vec;
21a1d56debSopenharmony_ci#[cfg(feature = "vec_array")]
22a1d56debSopenharmony_cipub use vec::Array;
23