mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-04-05 18:27:01 +00:00
lalign function in hprint
This commit is contained in:
parent
d613f394cd
commit
d9e4ba62ec
@ -393,4 +393,13 @@ EX string as_cstring(string o) {
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
||||
#if HDR
|
||||
template<class... T> string lalign(int len, T... t) {
|
||||
shstream hs;
|
||||
print(hs, t...);
|
||||
while(isize(hs.s) < len) hs.s += " ";
|
||||
return hs.s;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user