MCPcopy Create free account
hub / github.com/Hiro420/NikkeTools / write

Method write

UnLuac/src/unluac/parse/LStringType.java:155–161  ·  view source on GitHub ↗
(OutputStream out, BHeader header, LString string)

Source from the content-addressed store, hash-verified

153 }
154
155 @Override
156 public void write(OutputStream out, BHeader header, LString string) throws IOException {
157 header.sizeT.write(out, header, header.sizeT.create(string.value.length() + 1));
158 for(int i = 0; i < string.value.length(); i++) {
159 out.write(string.value.charAt(i));
160 }
161 }
162}
163

Callers

nothing calls this directly

Calls 3

lengthMethod · 0.80
writeMethod · 0.45
createMethod · 0.45

Tested by

no test coverage detected