-
-
Notifications
You must be signed in to change notification settings - Fork 81
dtl::XX::YY::getValue
Kasugaccho edited this page Aug 13, 2019
·
1 revision
English ๐ฌ๐ง / ๆฅๆฌ่ช ๐ฏ๐ต
[[nodiscard]] constexpr T getValue() const noexcept;
Gets the drawing value.
The return type is T.
Don't throw exception.
Constant time.
#include <DTL.hpp>
#include <iostream>
#include <cstddef>
#include <cstdint>
int main() {
using shape_t = std::uint_fast8_t;
constexpr std::size_t width{ 16 };
constexpr std::size_t height{ 8 };
shape_t matrix[height * width]{};
dtl::shape::Border<shape_t> border;
border.setValue(2).drawArray(matrix, width, height);
std::cout << "Value:" << static_cast<int>(border.getValue()) << '\n';
dtl::console::OutputNumber<shape_t>(",").drawArray(matrix, width, height);
dtl::console::OutputString<shape_t>("//", "##", "%%").drawArray(matrix, width, height);
return 0;
}
Value:2
2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,
2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,
2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,
2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,
2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,
2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,
2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%////////////////////////////%%
%%////////////////////////////%%
%%////////////////////////////%%
%%////////////////////////////%%
%%////////////////////////////%%
%%////////////////////////////%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Copyright (c) 2018-2021 As Project.
Distributed under the Boost Software License, Version 1.0.(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)