summaryrefslogtreecommitdiffhomepage
path: root/asm/operators.h
blob: 741ec7264dfaf663485ce498dcb0016867566fd6 (plain)
1
2
3
4
5
6
7
8
9
10
// Operating on data

#pragma once

#include <cstdint>
#include <vector>

std::vector<uint8_t> operator+(std::vector<uint8_t> a, const std::vector<uint8_t>& b);
std::vector<uint8_t> operator+(std::vector<uint8_t> a, const uint8_t& b);