15 lines
258 B
C
Raw Normal View History

#pragma once
#include <string>
#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)at(2); }
};