MCPcopy Create free account
hub / github.com/WebAssembly/wasm-c-api / Limits

Class Limits

include/wasm.hh:256–262  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

254enum class Mutability : uint8_t { CONST, VAR };
255
256struct Limits {
257 uint32_t min;
258 uint32_t max;
259
260 Limits(uint32_t min, uint32_t max = std::numeric_limits<uint32_t>::max()) :
261 min(min), max(max) {}
262};
263
264
265// Value Types

Callers 7

runFunction · 0.85
runFunction · 0.85
operator<<Function · 0.85
limitsFunction · 0.85
limits_to_v8Function · 0.85
typeMethod · 0.85
reveal_limitsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected