1.0.2 • Published 2 years ago

@rbxts/strict-map v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Strict Map

Strict Map is a simple class that looks like a regular map but that throws if indexed by a missing key.

Installation

roblox-ts

Simply install to your roblox-ts project as follows:

npm i @rbxts/strict-map

Wally

Wally users can install this package by adding the following line to their Wally.toml under [dependencies]:

StrictMap = "bytebit/strict-map@1.0.2"

Then just run wally install.

From model file

Model files are uploaded to every release as .rbxmx files. You can download the file from the Releases page and load it into your project however you see fit.

From model asset

New versions of the asset are uploaded with every release. The asset can be added to your Roblox Inventory and then inserted into your Place via Toolbox by getting it here.

Documentation

Documentation can be found here, is included in the TypeScript files directly, and was generated using TypeDoc.

Example

A brief description of the example

import { PackageClass, packageFunction } from "@rbxts/strict-map";

export class PackageConsumer {
}
local PackageClass = require(path.to.modules["strict-map"]).PackageClass
local packageFunction = require(path.to.modules["strict-map"]).packageFunction

local PackageConsumer = {}
PackageConsumer.__index = PackageConsumer

function new()
  local self = {}
  setmetatable(self, PackageConsumer)

  return self
end

return {
  new = new
}
1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago

0.0.1

2 years ago