Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/apple/foundationdb
/ pack
Method
pack
recipes/java-recipes/MicroTable.java:52–54 ·
view source on GitHub ↗
(Object value)
Source
from the content-addressed store, hash-verified
50
51
// Packing and unpacking helper functions.
52
private
static
byte[] pack(Object value){
53
return
Tuple.from(value).pack();
54
}
55
56
private
static
Object unpack(byte[] value){
57
return
Tuple.fromBytes(value).get(0);
Callers
15
apply
Method · 0.95
insert_doc
Function · 0.45
get_doc
Function · 0.45
_pack
Function · 0.45
multi_add
Function · 0.45
multi_sub
Function · 0.45
_pack
Function · 0.45
multi_add
Function · 0.45
multi_subtract
Function · 0.45
insert_doc
Function · 0.45
get_doc
Function · 0.45
apply
Method · 0.45
Calls
1
from
Method · 0.95
Tested by
1
apply
Method · 0.36