mirror of https://github.com/bsnes-emu/bsnes.git
15 lines
356 B
C++
15 lines
356 B
C++
#pragma once
|
|
|
|
namespace nall {
|
|
|
|
template<typename T> auto vector<T>::sort(const function<bool (const T& lhs, const T& rhs)>& comparator) -> void {
|
|
nall::sort(_pool, _size, comparator);
|
|
}
|
|
|
|
template<typename T> auto vector<T>::find(const T& value) const -> maybe<uint> {
|
|
for(uint n : range(size())) if(_pool[n] == value) return n;
|
|
return nothing;
|
|
}
|
|
|
|
}
|