Skip to content

Instantly share code, notes, and snippets.

View dalkrawr's full-sized avatar
♥️

rawr dalkrawr

♥️
View GitHub Profile
@dalkrawr
dalkrawr / FixedVector.h
Created October 27, 2024 05:47
Stripped std::vector with a fixed capacity with the ability of being stack allocated.
#pragma once
#include <memory>
#include <cassert>
template<typename Type, size_t Capacity>
class FixedVector
{
public:
FixedVector()