Skip to content

Commit 72e3007

Browse files
committed
Merge tag 'v1.1.0.9000'
- Use `B` instead of `b` as unit. - Now importing pillar instead of tibble, and using colored formatting. - The blob class can now be used for S4 dispatch. - Calling `c()` on blob objects returns a blob.
2 parents 86d1cd1 + 79f7766 commit 72e3007

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

API

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,23 @@ as.blob(x, ...)
66
blob(...)
77
new_blob(x)
88

9-
## S3 methods
9+
## Foreign S3 methods
1010

11+
[.blob(x, i, ...)
12+
[<-.blob(x, i, ..., value)
13+
[[<-.blob(x, i, ..., value)
1114
as.blob.blob(x, ...)
1215
as.blob.character(x, ...)
1316
as.blob.integer(x, ...)
1417
as.blob.list(x, ...)
1518
as.blob.raw(x, ...)
19+
as.data.frame.blob(x, row.names = NULL, optional = FALSE, ..., nm = paste(deparse(substitute(x), width.cutoff = 500L), collapse = " "))
20+
c.blob(x, ...)
21+
format.blob(x, ...)
22+
is.na.blob(x)
23+
is.na<-.blob(x, value)
24+
is_vector_s3.blob(x)
25+
obj_sum.blob(x)
26+
pillar_shaft.blob(x, ...)
27+
print.blob(x, ...)
28+
type_sum.blob(x)

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: blob
22
Title: A Simple S3 Class for Representing Vectors of Binary Data ('BLOBS')
3-
Version: 1.1.0
3+
Version: 1.1.0.9000
44
Authors@R: c(
55
person("Hadley", "Wickham", role = c("aut")),
66
person("Kirill", "Müller", , "krlmlr+r@mailbox.org", role = c("cre")),

NEWS.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
### blob 1.1.0.9000 (2017-11-29)
2+
3+
- Use `B` instead of `b` as unit.
4+
- Now importing pillar instead of tibble, and using colored formatting.
5+
- The blob class can now be used for S4 dispatch.
6+
- Calling `c()` on blob objects returns a blob.
7+
8+
19
# blob 1.1.0 (2017-06-17)
210

311
- New maintainer: Kirill Müller.

0 commit comments

Comments
 (0)