diff options
author | ubq323 <ubq323@ubq323.website> | 2025-02-25 23:43:41 +0000 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2025-02-25 23:43:41 +0000 |
commit | 4dec20e4ff11b61be57a6cfbdb289327d9e1eb7d (patch) | |
tree | cc2ffe0357c1110236270ad46dc2006cdb01bf89 /util/channel.lua | |
parent | e03937bbe51f3dd8e0d8ecc732999f5c4578fa94 (diff) |
the Restructuring
Diffstat (limited to 'util/channel.lua')
-rw-r--r-- | util/channel.lua | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/util/channel.lua b/util/channel.lua new file mode 100644 index 0000000..e908069 --- /dev/null +++ b/util/channel.lua @@ -0,0 +1,15 @@ +-- channel descriptor + +local Channel = {} +function Channel.make(pylon, descriptor) + return setmetatable({pylon=pylon, descriptor=descriptor}, Channel) +end +function Channel.__eq(self, other) + return self.pylon == other.pylon and self.descriptor == other.descriptor +end +function Channel.__call(_, ...) return Channel.make(...) end +function Channel.__tostring(self) + return self.pylon.name .. ':' .. self.descriptor +end +setmetatable(Channel, Channel) +return Channel |