From b0faa5adc2c5f56ae50cf21f855fa6805db926cf Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Thu, 19 Dec 2024 13:50:35 -0500 Subject: Add Text:from()/to() and Array:slice() for symmetry --- stdlib/text.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'stdlib/text.c') diff --git a/stdlib/text.c b/stdlib/text.c index 4879ead9..384bf7ac 100644 --- a/stdlib/text.c +++ b/stdlib/text.c @@ -562,6 +562,16 @@ public Text_t Text$slice(Text_t text, Int_t first_int, Int_t last_int) } } +public Text_t Text$from(Text_t text, Int_t first) +{ + return Text$slice(text, first, I_small(-1)); +} + +public Text_t Text$to(Text_t text, Int_t last) +{ + return Text$slice(text, I_small(1), last); +} + public Text_t Text$cluster(Text_t text, Int_t index_int) { int64_t index = Int_to_Int64(index_int, false); -- cgit v1.2.3