package.lib.serialization.SetObjectSerializer.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webpack Show documentation
Show all versions of webpack Show documentation
Packs ECMAScript/CommonJs/AMD modules for the browser. Allows you to split your codebase into multiple bundles, which can be loaded on demand. Supports loaders to preprocess files, i.e. json, jsx, es7, css, less, ... and your custom stuff.
The newest version!
/*
MIT License http://www.opensource.org/licenses/mit-license.php
*/
"use strict";
/** @typedef {import("./ObjectMiddleware").ObjectDeserializerContext} ObjectDeserializerContext */
/** @typedef {import("./ObjectMiddleware").ObjectSerializerContext} ObjectSerializerContext */
class SetObjectSerializer {
/**
* @template T
* @param {Set} obj set
* @param {ObjectSerializerContext} context context
*/
serialize(obj, context) {
context.write(obj.size);
for (const value of obj) {
context.write(value);
}
}
/**
* @template T
* @param {ObjectDeserializerContext} context context
* @returns {Set} date
*/
deserialize(context) {
/** @type {number} */
let size = context.read();
/** @type {Set} */
const set = new Set();
for (let i = 0; i < size; i++) {
set.add(context.read());
}
return set;
}
}
module.exports = SetObjectSerializer;