mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-17 04:09:14 +00:00
15 lines
268 B
C++
15 lines
268 B
C++
#pragma once
|
|
|
|
#include <string_view>
|
|
|
|
#include "simdjson/simdjson.h"
|
|
|
|
#include "byte_t.h"
|
|
|
|
class cycle_t final : public byte_t {
|
|
public:
|
|
cycle_t(simdjson::dom::array input) noexcept;
|
|
|
|
[[nodiscard]] auto action() const noexcept { return std::string_view(at(2)); }
|
|
};
|