From 3f353552da6bb67aa1e7018399e62c7eace9b8c2 Mon Sep 17 00:00:00 2001 From: Aki Date: Mon, 4 Sep 2017 21:14:36 +0200 Subject: Clearing up getLocked, docs changes --- not/Selector.lua | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'not/Selector.lua') diff --git a/not/Selector.lua b/not/Selector.lua index fa00286..9083b24 100644 --- a/not/Selector.lua +++ b/not/Selector.lua @@ -49,22 +49,21 @@ function Selector:setIndex (index) end --- Returns selected item's value. --- @return item selected from list +-- @return item selected from the list function Selector:getSelected () return self.list[self.index] end --- Checks if selection is locked and returns item's value. --- Nil returning part is there to clarify method's behaviour. --- @return nil if not locked, value from list if locked +-- @return item selected from the list if locked, nil otherwise function Selector:getLocked () if self.locked then return self:getSelected() end - return nil end --- Checks if Selected value is unique in group's scope. +-- @return boolean answering question function Selector:isUnique () if self.group then -- In this case next is used to determine if table returned by call is empty. -- cgit v1.1