includes/std: Added std::mem::eof function

This commit is contained in:
WerWolv
2021-11-01 19:10:36 +01:00
parent 91609bd3b4
commit 9de99d9b08

7
includes/libstd/mem.pat Normal file
View File

@@ -0,0 +1,7 @@
namespace std::mem {
fn eof() {
return $ >= std::mem::size();
};
}