From 8f76e5d8823b684d91e19f8efebe5579e00c8c48 Mon Sep 17 00:00:00 2001 From: Determinant Date: Sun, 13 Oct 2019 15:32:16 -0400 Subject: add len() --- include/salticidae/buffer.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/salticidae/buffer.h') diff --git a/include/salticidae/buffer.h b/include/salticidae/buffer.h index c7b11dd..35d10b8 100644 --- a/include/salticidae/buffer.h +++ b/include/salticidae/buffer.h @@ -108,6 +108,7 @@ class SegBuffer { } size_t size() const { return _size; } + size_t len() const { return buffer.size(); } bool empty() const { return buffer.empty(); } void clear() { -- cgit v1.2.3