Annotate

teal-src/util/set.d.tl @ 12694:26a004c96ef8

util.paseto: Implementation of PASETO v4.public tokens PASETO provides an alternative to JWT with the promise of fewer implementation pitfalls. The v4.public algorithm allows asymmetric cryptographically-verified token issuance and validation. In summary, such tokens can be issued by one party and securely verified by any other party independently using the public key of the issuer. This has a number of potential applications in a decentralized network and ecosystem such as XMPP. For example, such tokens could be combined with XEP-0317 to allow hats to be verified even in the context of a third-party MUC service.
author Matthew Wild <mwild1@gmail.com>
date Fri, 24 Jun 2022 17:03:28 +0100
parent 12617:36d77cc56ecb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
12617
36d77cc56ecb util.set: Add teal type declaration file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
1 local record lib
36d77cc56ecb util.set: Add teal type declaration file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
2 record Set<T>
36d77cc56ecb util.set: Add teal type declaration file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
3 add : function<T> (Set<T>, T)
36d77cc56ecb util.set: Add teal type declaration file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
4 contains : function<T> (Set<T>, T) : boolean
36d77cc56ecb util.set: Add teal type declaration file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
5 contains_set : function<T> (Set<T>, Set<T>) : boolean
36d77cc56ecb util.set: Add teal type declaration file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
6 items : function<T> (Set<T>) : function<T> (Set<T>, T) : T
36d77cc56ecb util.set: Add teal type declaration file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
7 add_list : function<T> (Set<T>, { T })
36d77cc56ecb util.set: Add teal type declaration file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
8 include : function<T> (Set<T>, Set<T>)
36d77cc56ecb util.set: Add teal type declaration file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
9 exclude : function<T> (Set<T>, Set<T>)
36d77cc56ecb util.set: Add teal type declaration file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
10 empty : function<T> (Set<T>) : boolean
36d77cc56ecb util.set: Add teal type declaration file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
11 end
36d77cc56ecb util.set: Add teal type declaration file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
12
36d77cc56ecb util.set: Add teal type declaration file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
13 new : function<T> ({ T }) : Set<T>
36d77cc56ecb util.set: Add teal type declaration file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
14 is_set : function (any) : boolean
36d77cc56ecb util.set: Add teal type declaration file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
15 union : function<T> (Set<T>, Set<T>) : Set <T>
36d77cc56ecb util.set: Add teal type declaration file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
16 difference : function<T> (Set<T>, Set<T>) : Set <T>
36d77cc56ecb util.set: Add teal type declaration file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
17 intersection : function<T> (Set<T>, Set<T>) : Set <T>
36d77cc56ecb util.set: Add teal type declaration file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
18 xor : function<T> (Set<T>, Set<T>) : Set <T>
36d77cc56ecb util.set: Add teal type declaration file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
19 end
36d77cc56ecb util.set: Add teal type declaration file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
20
36d77cc56ecb util.set: Add teal type declaration file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
21 return lib