MCPcopy Create free account
hub / github.com/demoth/jake2 / writeString

Method writeString

qcommon/src/main/java/jake2/qcommon/sizebuf_t.java:163–167  ·  view source on GitHub ↗
(String s)

Source from the content-addressed store, hash-verified

161 }
162
163 public void writeString(String s) {
164 final String x = Objects.requireNonNullElse(s, "");
165 writeBytes(Lib.stringToBytes(x));
166 writeByte((byte) 0);
167 }
168
169 /**
170 * Read at most 2048 single byte characters

Callers 7

writeAdapterMethod · 0.45
writeMethod · 0.45
writeMethod · 0.45
writeMethod · 0.45
writeMethod · 0.45
writeMethod · 0.45
testStringsMethod · 0.45

Calls 3

writeBytesMethod · 0.95
stringToBytesMethod · 0.95
writeByteMethod · 0.95

Tested by 1

testStringsMethod · 0.36