-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
38 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
Package: lzstringr | ||
Package: lzstring | ||
Type: Package | ||
Title: An R wrapper of lzstring C++ library | ||
Version: 0.1.0 | ||
Author: Sam Parmar | ||
Maintainer: Sam Parmar <[email protected]> | ||
Description: An R wrapper of LZ-based compression algorithm implemented in C++ | ||
Description: This package provides an R interface to the lz-string C++ library, | ||
enabling LZ-based compression and decompression of strings directly within | ||
R. This can be particularly useful for reducing the memory footprint of | ||
large strings or for transmitting compressed data. | ||
License: MIT + file LICENSE | ||
Encoding: UTF-8 | ||
LazyData: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
YEAR: 2024 | ||
COPYRIGHT HOLDER: lzstringr authors | ||
COPYRIGHT HOLDER: lzstring authors |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
# Generated by cpp11: do not edit by hand | ||
|
||
compressToEncodedURIComponent_ <- function(bytes) { | ||
.Call(`_lzstringr_compressToEncodedURIComponent_`, bytes) | ||
.Call(`_lzstring_compressToEncodedURIComponent_`, bytes) | ||
} | ||
|
||
decompressFromEncodedURIComponent_ <- function(bytes) { | ||
.Call(`_lzstringr_decompressFromEncodedURIComponent_`, bytes) | ||
.Call(`_lzstring_decompressFromEncodedURIComponent_`, bytes) | ||
} | ||
|
||
compressToBase64_ <- function(bytes) { | ||
.Call(`_lzstringr_compressToBase64_`, bytes) | ||
.Call(`_lzstring_compressToBase64_`, bytes) | ||
} | ||
|
||
decompressFromBase64_ <- function(bytes) { | ||
.Call(`_lzstringr_decompressFromBase64_`, bytes) | ||
.Call(`_lzstring_decompressFromBase64_`, bytes) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters