Skip to content

Commit

Permalink
Remove some member function of textual_input_port
Browse files Browse the repository at this point in the history
Signed-off-by: yamacir-kit <[email protected]>
  • Loading branch information
yamacir-kit committed Jul 2, 2024
1 parent 9106b08 commit 2dbf851
Show file tree
Hide file tree
Showing 4 changed files with 157 additions and 200 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ Procedures for each standard are provided by the following R7RS-style libraries:
cmake -B build -DCMAKE_BUILD_TYPE=Release
cd build
make package
sudo apt install build/meevax_0.5.207_amd64.deb
sudo apt install build/meevax_0.5.208_amd64.deb
```

or
Expand Down Expand Up @@ -122,9 +122,9 @@ sudo rm -rf /usr/local/share/meevax

| Target Name | Description
|-------------|-------------
| `all` | Build shared-library `libmeevax.0.5.207.so` and executable `meevax`
| `all` | Build shared-library `libmeevax.0.5.208.so` and executable `meevax`
| `test` | Test executable `meevax`
| `package` | Generate debian package `meevax_0.5.207_amd64.deb`
| `package` | Generate debian package `meevax_0.5.208_amd64.deb`
| `install` | Copy files into `/usr/local` directly

## Usage
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.207
0.5.208
12 changes: 2 additions & 10 deletions include/meevax/kernel/textual_input_port.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,18 +89,10 @@ inline namespace kernel

auto read(character = {}) -> object;

auto read_character_literal(character = {}, character = {}) -> character;

auto read_string_literal(character = {}) -> string;

auto take_character() -> character;

auto take_nested_block_comment(character = {}, character = {}) -> void;

auto take_token(character = {}) -> std::string;

template <typename F>
auto take_until(F satisfy, character c = {})
auto take_character_until(F satisfy, character c = {})
{
auto s = static_cast<std::string>(c);

Expand All @@ -113,7 +105,7 @@ inline namespace kernel
}

template <typename F>
auto take_while(F satisfy, character c = {})
auto take_character_while(F satisfy, character c = {})
{
auto s = static_cast<std::string>(c);

Expand Down
Loading

0 comments on commit 2dbf851

Please sign in to comment.