From d0a76466d486e4161ca72a772ffba77657f25a2e Mon Sep 17 00:00:00 2001 From: Leandro Fernandes Date: Fri, 29 Dec 2023 01:14:45 -0300 Subject: [PATCH] Update README.md --- README.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 4706177..02eaadb 100644 --- a/README.md +++ b/README.md @@ -59,12 +59,8 @@ Third Party Benchmarks *ㅤyou can use a "string pool" to avoid creating multiple instances of strings with same content. This optimization is useful when there are a lot of repeated string values present. In this scenario, it may reduce allocated memory and speed-up processing time. ### Parsing Files -1. Readers - * [Fixed length](#file-reading-for-fixedlengthreader) - * [Variable length](#file-reading-for-variablelengthreader) - * [Variable length raw](#file-reading-for-variablelength-raw) -2. Writers - * [Default Type Convert](#file-processing---write) +1. [Readers](#file-processing---read) +2. [Writers](#file-processing---write) NOTE: MOST EXAMPLES USE TUPLES FOR SIMPLICITY. PARSER ACTUALLY WORKS FOR ANY TYPE (CLASSES, STRUCTS, RECORDS, ARRAYS, TUPLES, ETC)