Back to Home
ESO Function Data v101040
sort()
Function Aliases
- No known aliases for this function.
Global Function Definitions
- No known global definitions for this function.
Local Function Definitions
- No known local definitions for this function.
Function Calls
- common/rzchroma/rzchroma_manager.lua:78 -- table.sort(activeDeviceEffects, EffectSort)
- ingame/antiquities/antiquitycategorydata.lua:91 -- table.sort(self.subcategories, ZO_AntiquityCategory_Base.CompareTo)
- ingame/antiquities/antiquitycategorydata.lua:148 -- table.sort(self.antiquities, ZO_DefaultAntiquityOrSetSortComparison)
- ingame/antiquities/antiquitycategorydata.lua:153 -- table.sort(self.subcategories, ZO_AntiquityCategory.CompareTo)
- ingame/antiquities/antiquitydatamanager.lua:134 -- table.sort(self.topLevelCategories, ZO_AntiquityCategory.CompareTo)
- ingame/antiquities/gamepad/antiquityjournal_gamepad.lua:1308 -- table.sort(antiquitySection.list, antiquitySection.sortFunction)
- ingame/antiquities/keyboard/antiquityjournal_keyboard.lua:975 -- table.sort(antiquities, sortFunction)
- ingame/banking/gamepad/banking_gamepad.lua:82 -- table.sort(slots, self.list.sortFunction)
- ingame/battleground/battlegroundmedalinfo_shared.lua:156 -- table.sort(self.scoreboardEntryRawMedalData, MedalSort)
- ingame/battleground/battlegroundobjectivestatedisplay.lua:46 -- table.sort(self.objectives, self.sortFunction)
- ingame/battleground/battlegroundscoreboard.lua:360 -- table.sort(self.playerEntryData, SortPlayerData)
- ingame/battleground/battlegroundscorehud.lua:193 -- table.sort(self.teamSections, self.teamSectionSort)
- ingame/buffdebuff/buffdebuffstyles.lua:136 -- table.sort(self.sortedBuffs, self.SortCallbackFunction)
- ingame/buffdebuff/buffdebuffstyles.lua:139 -- table.sort(self.sortedDebuffs, self.SortCallbackFunction)
- ingame/cadwell/gamepad/cadwell_gamepad.lua:105 -- table.sort(zones, ZO_CadwellSort)
- ingame/cadwell/keyboard/cadwell.lua:131 -- table.sort(objectives, ZO_CadwellSort)
- ingame/cadwell/keyboard/cadwell.lua:138 -- table.sort(zones, ZO_CadwellSort)
- ingame/campaign/campaignbrowser.lua:453 -- table.sort(self.filteredList, self.sortFunction)
- ingame/campaign/campaignbrowser_manager.lua:275 -- table.sort(rulesetIds, CompareRulesetsByDuration)
- ingame/campaign/campaignscoring_shared.lua:68 -- table.sort(scoreInfos, ScoreInfoComparator)
- ingame/campaign/gamepad/campaignbrowser_gamepad.lua:795 -- table.sort(self.campaignEntries, function(left, right) return ZO_TableOrderingFunction(left, right, "campaignSort", DEFAULT_GAMEPAD_CAMPAIGN_ITEM_SORT, ZO_SORT_ORDER_UP) end)
- ingame/campaign/gamepad/campaignbrowser_gamepad.lua:808 -- table.sort(self.campaignRulesetTypes)
- ingame/campaign/gamepad/campaignemperor_gamepad.lua:140 -- table.sort(self.leaderboardAlliances, LeaderboardSortFunc)
- ingame/centerscreenannounce/centerscreenannounce.lua:1587 -- table.sort(self.displayQueue, SortMessageParams)
- ingame/champion/champion.lua:1650 -- table.sort(self.starsToAnimateForConfirm, SortConfirmStars)
- ingame/chatsystem/chatoptions.lua:204 -- table.sort(sortedEntries, FilterComparator)
- ingame/chatsystem/sharedchatsystem.lua:2167 -- table.sort(switches)
- ingame/chatsystem/gamepad/chatmenu_gamepad.lua:371 -- table.sort(switches)
- ingame/collections/collectibledatamanager.lua:904 -- table.sort(self.sortedCollectibles, function(left, right)
local leftIsFavorite = left:IsFavorite()
local rightIsFavorite = right:IsFavorite()
if leftIsFavorite ~= rightIsFavorite then
return leftIsFavorite
end
local leftIsUnlocked = left:IsUnlocked()
local rightIsUnlocked = right:IsUnlocked()
if leftIsUnlocked ~= rightIsUnlocked then
return leftIsUnlocked
end
local leftSortOrder = left:GetSortOrder()
local rightSortOrder = right:GetSortOrder()
if leftSortOrder ~= rightSortOrder then
return leftSortOrder < rightSortOrder
end
local leftIsValidForPlayer = left:IsValidForPlayer()
local rightIsValidForPlayer = right:IsValidForPlayer()
if leftIsValidForPlayer ~= rightIsValidForPlayer then
return leftIsValidForPlayer
else
return collectibleNameLookupTable[left:GetId()] < collectibleNameLookupTable[right:GetId()]
end
end)
- ingame/collections/collectibledatamanager.lua:942 -- table.sort(tempTable, function(left, right)
return left.name < right.name
end)
- ingame/collections/collectibledatamanager.lua:1018 -- table.sort(tempTable, function(left, right)
return left.name < right.name
end)
- ingame/collections/collectibledatamanager.lua:1048 -- table.sort(self.sortedCollectibles, function(left, right)
local leftIsUnlocked = left:IsUnlocked()
local rightIsUnlocked = right:IsUnlocked()
if leftIsUnlocked ~= rightIsUnlocked then
return leftIsUnlocked
end
local leftOutfitStyleItemStyleId = left:GetOutfitStyleItemStyleId()
local rightOutfitStyleItemStyleId = right:GetOutfitStyleItemStyleId()
if leftOutfitStyleItemStyleId ~= rightOutfitStyleItemStyleId then
return itemStyleNameLookupTable[leftOutfitStyleItemStyleId] < itemStyleNameLookupTable[rightOutfitStyleItemStyleId]
end
local leftSortOrder = left:GetSortOrder()
local rightSortOrder = right:GetSortOrder()
if leftSortOrder ~= rightSortOrder then
return leftSortOrder < rightSortOrder
else
return collectibleNameLookupTable[left:GetId()] < collectibleNameLookupTable[right:GetId()]
end
end)
- ingame/collections/collectibledatamanager.lua:1087 -- table.sort(self.sortedCollectibles, function(left, right)
local leftIsPrimaryResidence = left:IsPrimaryResidence()
local rightIsPrimaryResidence = right:IsPrimaryResidence()
if leftIsPrimaryResidence ~= rightIsPrimaryResidence then
return leftIsPrimaryResidence
end
local leftIsFavorite = left:IsFavorite()
local rightIsFavorite = right:IsFavorite()
if leftIsFavorite ~= rightIsFavorite then
return leftIsFavorite
end
local leftIsUnlocked = left:IsUnlocked()
local rightIsUnlocked = right:IsUnlocked()
if leftIsUnlocked ~= rightIsUnlocked then
return leftIsUnlocked
end
local leftSortOrder = left:GetSortOrder()
local rightSortOrder = right:GetSortOrder()
if leftSortOrder ~= rightSortOrder then
return leftSortOrder < rightSortOrder
else
return collectibleNameLookupTable[left:GetId()] < collectibleNameLookupTable[right:GetId()]
end
end)
- ingame/collections/collectibledatamanager.lua:1132 -- table.sort(self.sortedCollectibles, function(left, right)
local leftSortOrder = left:GetSortOrder()
local rightSortOrder = right:GetSortOrder()
if leftSortOrder ~= rightSortOrder then
return leftSortOrder < rightSortOrder
else
return collectibleNameLookupTable[left:GetId()] < collectibleNameLookupTable[right:GetId()]
end
end)
- ingame/collections/itemsetcollectionsdata.lua:633 -- table.sort(self.subcategories, ZO_ItemSetCollectionCategoryData.CompareTo)
- ingame/collections/itemsetcollectionsdata.lua:640 -- table.sort(self.collections, ZO_ItemSetCollectionData.CompareTo)
- ingame/collections/itemsetcollectionsdatamanager.lua:156 -- table.sort(self.topLevelCategories, ZO_ItemSetCollectionCategoryData.CompareTo)
- ingame/collections/tributepatronbook_shared.lua:187 -- table.sort(self.starterUniqueCardIds, ZO_TributePatronBook_Shared.CompareTributeStarterCards)
- ingame/companion/gamepad/companionequipment_gamepad.lua:776 -- table.sort(filteredDataTable, ZO_GamepadInventory_DefaultItemSortComparator)
- ingame/companion/keyboard/companionequipment_keyboard.lua:329 -- table.sort(scrollData, self.sortFunction)
- ingame/companion/keyboard/companionequipment_keyboard.lua:386 -- table.sort(scrollData, self.sortFunction)
- ingame/contacts/notifications_common.lua:1723 -- table.sort(scrollData, self.sortFunction)
- ingame/contacts/notifications_common.lua:1803 -- table.sort(self.list.dataList, function(listEntry1, listEntry2) return self:CompareNotifications(listEntry1, listEntry2) end)
- ingame/contacts/keyboard/friendslist_keyboard.lua:196 -- table.sort(scrollData, self.sortFunction)
- ingame/contacts/keyboard/ignorelist_keyboard.lua:114 -- table.sort(scrollData, self.sortFunction)
- ingame/crafting/consolidatedsmithingsetdata_manager.lua:94 -- table.sort(self.sets, ZO_ConsolidatedSmithingSetData.CompareTo)
- ingame/crafting/consolidatedsmithingsetdata_manager.lua:258 -- table.sort(self.sortedCategoryData, ZO_ConsolidatedSmithingSetCategoryData.CompareTo)
- ingame/crafting/craftingresults_base.lua:535 -- table.sort(resultItems, CompareCraftingResultItems)
- ingame/crafting/fishfillet_shared.lua:210 -- table.sort(sortedItems, CompareFilletingItems)
- ingame/crafting/provisioner_manager.lua:195 -- table.sort(recipeList.recipes, RecipeComparator)
- ingame/crafting/sharedenchanting.lua:293 -- table.sort(sortedItems, CompareExtractingItems)
- ingame/crafting/smithingextraction_shared.lua:260 -- table.sort(sortedItems, CompareExtractingItems)
- ingame/crafting/universaldeconstructionpanel_shared.lua:282 -- table.sort(sortedItems, CompareExtractingItems)
- ingame/crafting/gamepad/consolidatedsmithingsets_gamepad.lua:507 -- table.sort(parametricListEntries, SortComparator)
- ingame/crafting/gamepad/gamepadcraftinginventory.lua:118 -- table.sort(filteredDataTable, sortFunction)
- ingame/crafting/keyboard/craftinginventory.lua:319 -- table.sort(scrollData, self.sortFunction)
- ingame/crowncrates/crowncratespackchoosing.lua:864 -- table.sort(crateIds, function(a, b) return a > b end)
- ingame/crowncrates/keyboard/crowngemification_keyboard.lua:181 -- table.sort(self.personalList, self.SortData)
- ingame/deathrecap/deathrecap.lua:238 -- table.sort(attacks, SortAttacks)
- ingame/dyeing/dyeing_shared.lua:49 -- table.sort(slotsTable, DyeableSlotSortComparator)
- ingame/dyeing/dyeing_shared.lua:415 -- table.sort(sortedCategories)
- ingame/dyeing/dyeing_shared.lua:720 -- table.sort(self.dyesByHueCategory[hueCategory], ZO_Dyeing_DyeSortComparator)
- ingame/dyeing/dyeing_shared.lua:723 -- table.sort(self.dyesByRarity[rarity], ZO_Dyeing_DyeSortComparator)
- ingame/dyeing/gamepad/dyeing_gamepad.lua:298 -- table.sort(tempTable, ZO_DyeSwatchesGridSort)
- ingame/endlessdungeon/endlessdungeonbufftracker_shared.lua:240 -- table.sort(buffEntries, self.CompareBuffEntries)
- ingame/giftinventory/gamepad/giftinventorycategory_gamepad.lua:131 -- table.sort(entries, self.giftSortFunction)
- ingame/giftinventory/keyboard/giftinventorycategory_keyboard.lua:78 -- table.sort(scrollData, self.sortFunction)
- ingame/group/keyboard/zo_groupmenu_keyboard.lua:295 -- table.sort(nodeDataList, PrioritySort)
- ingame/groupfinder/groupfinder_applicationlist_manager.lua:49 -- table.sort(sortedApplicationsData, optionalSortFunction)
- ingame/groupfinder/keyboard/groupfinder_applicationlist_keyboard.lua:206 -- table.sort(scrollData, self.sortFunction)
- ingame/guild/guildheraldry_shared.lua:171 -- table.sort(self.colorListsByCategory[hueCategory], ZO_Dyeing_DyeSortComparator)
- ingame/guild/guildheraldry_shared.lua:182 -- table.sort(self.sortedColorList, ZO_DyeSwatchesGridSort)
- ingame/guild/guildweeklybids_shared.lua:51 -- table.sort(self.masterList, CompareBids)
- ingame/guild/guildweeklybids_shared.lua:67 -- table.sort(scrollDataList, self.sortFunction)
- ingame/guild/gamepad/guildhistory_gamepad.lua:484 -- table.sort(self.guildEvents, function(event1, event2) return event1.eventId > event2.eventId end)
- ingame/guild/keyboard/guildhistory_keyboard.lua:257 -- table.sort(scrollData, SortFunc)
- ingame/guild/keyboard/guildroster_keyboard.lua:193 -- table.sort(scrollData, self.sortFunction)
- ingame/guildfinder/keyboard/guildfinder_applicationslist_keyboard.lua:29 -- table.sort(scrollData, self.sortFunction)
- ingame/guildfinder/keyboard/guildrecruitment_blacklist_keyboard.lua:72 -- table.sort(scrollData, self.sortFunction)
- ingame/help/gamepad/help_submitfeedback_gamepad.lua:128 -- table.sort(iterationEntries, fieldData.sortFunction)
- ingame/help/keyboard/helpsubmitfeedback_keyboard.lua:83 -- table.sort(iterationEntries, fieldData.sortFunction)
- ingame/housingeditor/furnitureclasses_shared.lua:925 -- table.sort(self.subcategories, SortCategories)
- ingame/housingeditor/housesettings_manager.lua:188 -- table.sort(houseEntries, ZO_HouseSettings_HouseEntrySort)
- ingame/housingeditor/housingeditorhud.lua:4088 -- table.sort(self.keybindDescriptors, CompareKeybindOrder)
- ingame/housingeditor/gamepad/furnitureclasses_gamepad.lua:348 -- table.sort(locationFilterEntries, CompareLocationFilters)
- ingame/housingeditor/gamepad/furnitureclasses_gamepad.lua:904 -- table.sort(sortedEntries, self.CompareFurnitureEntriesFunction)
- ingame/housingeditor/keyboard/furnitureclasses_keyboard.lua:434 -- table.sort(scrollData, self.CompareFurnitureEntriesFunction)
- ingame/housingeditor/keyboard/furnitureclasses_keyboard.lua:578 -- table.sort(scrollData, self.sortFunction)
- ingame/housingeditor/keyboard/furnitureclasses_keyboard.lua:662 -- table.sort(locationFilterEntries, CompareLocationFilters)
- ingame/inventory/inventory.lua:1254 -- table.sort(scrollData, inventory.sortFn)
- ingame/inventory/inventorywallet.lua:144 -- table.sort(scrollData, self.sortFunction)
- ingame/inventory/gamepad/gamepadinventory.lua:1296 -- table.sort(filteredDataTable, ZO_GamepadInventory_QuestItemSortComparator)
- ingame/inventory/gamepad/gamepadinventory.lua:1304 -- table.sort(filteredDataTable, ZO_GamepadInventory_DefaultItemSortComparator)
- ingame/inventory/gamepad/inventoryitemimprovement_gamepad.lua:134 -- table.sort(self.enumeratedList, self.sortComparator)
- ingame/inventory/gamepad/inventorylist_gamepad.lua:464 -- table.sort(slots, self.sortFunction or ItemSortFunc)
- ingame/leaderboards/endlessdungeonleaderboards_shared.lua:203 -- table.sort(entries, SortEntries)
- ingame/leaderboards/raidleaderboards_shared.lua:239 -- table.sort(entries, function(a,b) return a.uiSortIndex < b.uiSortIndex end)
- ingame/leveluprewards/leveluprewards_manager.lua:91 -- table.sort(self.pendingLevelUpRewards, function(...) return self:SortRewardAndAdditionalUnlockEntries(...) end)
- ingame/leveluprewards/leveluprewards_manager.lua:106 -- table.sort(self.upcomingLevelUpRewards, function(...) return self:SortRewardAndAdditionalUnlockEntries(...) end)
- ingame/leveluprewards/leveluprewards_manager.lua:122 -- table.sort(self.upcomingMilestoneLevelUpRewards, function(...) return self:SortRewardAndAdditionalUnlockEntries(...) end)
- ingame/lfg/zo_activityfinderroot_manager.lua:293 -- table.sort(sortedActivityData, LFGSort)
- ingame/lorelibrary/gamepad/lorelibrarybookset_gamepad.lua:135 -- table.sort(books, BookSorter)
- ingame/lorelibrary/gamepad/lorelibrary_gamepad.lua:119 -- table.sort(categories, NameSorter)
- ingame/lorelibrary/gamepad/lorelibrary_gamepad.lua:149 -- table.sort(collections, NameSorter)
- ingame/lorelibrary/keyboard/lorelibrary_keyboard.lua:141 -- table.sort(categories, NameSorter)
- ingame/lorelibrary/keyboard/lorelibrary_keyboard.lua:162 -- table.sort(collections, NameSorter)
- ingame/lorelibrary/keyboard/lorelibrary_keyboard.lua:294 -- table.sort(scrollData, BookEntryComparator)
- ingame/mail/gamepad/mailinbox_gamepad.lua:811 -- table.sort(entries, SortFunction)
- ingame/mail/keyboard/mailinbox_keyboard.lua:407 -- table.sort(playerList, MailComparator)
- ingame/mail/keyboard/mailinbox_keyboard.lua:408 -- table.sort(systemList, MailComparator)
- ingame/map/maplocationtooltip.lua:54 -- table.sort(groupings, SortGroupings)
- ingame/map/maplocationtooltip.lua:58 -- table.sort(grouping, SortGrouping)
- ingame/map/mappin_manager.lua:891 -- table.sort(foundTooltipMouseOverPins, GamepadTooltipPinSortFunction)
- ingame/map/mappin_manager.lua:893 -- table.sort(foundTooltipMouseOverPins, TooltipPinSortFunction)
- ingame/map/mappin_manager.lua:1199 -- table.sort(pinDatas, SortPinDatas)
- ingame/map/worldmap.lua:4801 -- table.sort(self.antiquityDigSitePinInfo, function(left, right)
return left.normalizedY < right.normalizedY
end)
- ingame/map/worldmapantiquities_shared.lua:111 -- table.sort(antiquityEntries, AntiquitySort)
- ingame/map/worldmaphouses_manager.lua:53 -- table.sort(houseMapData, HouseMapDataSort)
- ingame/map/worldmaplocations_shared.lua:57 -- table.sort(mapData, function(a,b)
return a.locationName < b.locationName
end)
- ingame/map/worldmapquests_shared.lua:156 -- table.sort(self.masterList, self.CompareQuests)
- ingame/map/gamepad/worldmapchoicedialog_gamepad.lua:120 -- table.sort(travelPinHandlers, TravelPinHandlerSortFunction)
- ingame/map/gamepad/worldmapchoicedialog_gamepad.lua:175 -- table.sort(questPinHandlers, QuestPinHandlersSortFunction)
- ingame/map/gamepad/worldmapchoicedialog_gamepad.lua:247 -- table.sort(antiquityPinHandlers, QuestPinHandlersSortFunction)
- ingame/playeremote/playeremotemanager.lua:181 -- table.sort(emoteList, emoteSortFunction)
- ingame/playeremote/playeremotemanager.lua:184 -- table.sort(self.emoteCategoryTypes, CompareCategories)
- ingame/profiler/profilerutils.lua:20 -- table.sort(sources, function(a, b) return a.count > b.count end)
- ingame/quickslot/keyboard/quickslot_keyboard.lua:275 -- table.sort(scrollData, self.sortFunction)
- ingame/repair/repairwindow.lua:218 -- table.sort(scrollData, Comparator)
- ingame/stats/gamepad/zo_stats_gamepad.lua:1209 -- table.sort(sortedArtificialEffectsTable, ArtificialEffectsRowComparator)
- ingame/stats/keyboard/zo_stats_keyboard.lua:894 -- table.sort(effectsRows, EffectsRowComparator)
- ingame/storewindow/gamepad/storewindow_gamepad_util.lua:473 -- table.sort(items, self.sortFunc)
- ingame/storewindow/keyboard/buyback_keyboard.lua:229 -- table.sort(scrollData, Comparator)
- ingame/storewindow/keyboard/storewindow_keyboard.lua:490 -- table.sort(scrollData, self.sortFunction)
- ingame/timedactivities/timedactivities_manager.lua:148 -- table.sort(self.rewardList, TimedActivityRewardComparator)
- ingame/tooltip/cadwellstooltips.lua:18 -- table.sort(objectives, ZO_CadwellSort)
- ingame/tradinghouse/tradinghousefeatures_shared.lua:472 -- table.sort(enchantmentChoices, CompareEnchantChoices)
- ingame/tradinghouse/tradinghousesearchhistory_manager.lua:48 -- table.sort(self.searchEntries, CompareSearchEntries)
- ingame/voicechat/console/zo_voicechatchannels_gamepad.lua:174 -- table.sort(guildRooms, GuildRoomEntriesComparator)
- ingame/voicechat/console/zo_voicechatchannels_gamepad.lua:227 -- table.sort(guildRooms, GuildRoomEntriesComparator)
- ingame/voicechat/console/zo_voicechat_manager.lua:123 -- table.sort(self.list, SortParticipantEntries)
- ingame/zonestories/zonestories_manager.lua:82 -- table.sort(self.zoneList, function(left, right)
return left.name < right.name
end)
- ingame/zonestories/keyboard/zonestories_keyboard.lua:306 -- table.sort(activityData, ActivityDataComparator)
- ingame/zo_loot/loot_shared.lua:192 -- table.sort(lootData, LootSortFunction)
- ingame/zo_quest/questjournal_manager.lua:218 -- table.sort(self.categories, ZO_QuestJournal_Manager_SortQuestCategories)
- ingame/zo_quest/questjournal_manager.lua:219 -- table.sort(self.quests, ZO_QuestJournal_Manager_SortQuestEntries)
- ingame/zo_quest/questtimer.lua:184 -- table.sort(sortedTimers, TimerComparer)
- internalingame/market/gamepad/marketproductlistscene_gamepad.lua:106 -- table.sort(marketProducts, function(...)
return ZO_Market_Shared.CompareCrateMarketProducts(...)
end)
- internalingame/market/gamepad/marketproductlistscene_gamepad.lua:120 -- table.sort(marketProducts, function(...)
return ZO_Market_Shared.CompareBundleMarketProducts(...)
end)
- internalingame/market/gamepad/market_gamepad.lua:1030 -- table.sort(sortedList, SubcategoryListSort)
- internalingame/market/gamepad/market_gamepad.lua:1195 -- table.sort(labeledGroupTable, self.marketProductGroupTableSortFunction)
- internalingame/market/gamepad/market_gamepad.lua:1866 -- table.sort(childTiles, function(a,b)
return a.displayName < b.displayName
end)
- internalingame/market/keyboard/marketclasses_keyboard.lua:476 -- table.sort(iconControls, function(a,b)
return a.marketProductIcon:GetDisplayName() < b.marketProductIcon:GetDisplayName()
end)
- internalingame/market/keyboard/marketcontentfragment_keyboard.lua:101 -- table.sort(self.marketProducts, function(entry1, entry2)
return self.owner:CompareMarketProducts(entry1, entry2)
end)
- internalingame/market/keyboard/marketlistfragment_keyboard.lua:184 -- table.sort(marketProducts, function(...)
return ZO_Market_Shared.CompareCrateMarketProducts(...)
end)
- internalingame/market/keyboard/marketlistfragment_keyboard.lua:197 -- table.sort(marketProducts, function(...)
return ZO_Market_Shared.CompareBundleMarketProducts(...)
end)
- internalingame/market/keyboard/market_keyboard.lua:846 -- table.sort(labeledGroupTable, function(entry1, entry2)
return self:CompareMarketProducts(entry1, entry2)
end)
- internalingame/marketannouncement/marketannouncement_manager.lua:74 -- table.sort(self.productInfoTable, CompareMarketProducts)
- internalingame/scrying/scrying.lua:1106 -- table.sort(borderVisibleHexes, SortByHexIndex)
- internalingame/tribute/tributedata.lua:88 -- table.sort(self.cardDataList, CompareSecretOrderedEntries)
- internalingame/tribute/tributedata.lua:101 -- table.sort(sortedCardDataList, optionalSortFunction)
- internalingame/tribute/tributedata.lua:135 -- table.sort(patronCardCountList, ZO_TributePileData.PatronCardCountListSortFunction)
- internalingame/tribute/tributedata.lua:319 -- table.sort(self.cardDataList, CompareEntries)
- internalingame/tribute/tributepatronselection_manager.lua:81 -- table.sort(self.patronDataList, ComparePatrons)
- libraries/utility/zo_callbackobject.lua:59 -- table.sort(registry, SortRegistry)
- libraries/zo_combobox/zo_combobox_base.lua:194 -- table.sort(self.m_sortedItems, function(item1, item2) return ComboBoxSortHelper(item1, item2, self) end)
- libraries/zo_dialog/zo_listdialog.lua:106 -- table.sort(scrollData, sortFunction)
- libraries/zo_keybindstrip/zo_keybindstrip.lua:1108 -- table.sort(buttons, GamepadSort)
- libraries/zo_keybindstrip/zo_keybindstrip.lua:1110 -- table.sort(buttons, KeyboardSort)
- libraries/zo_keybindstrip/zo_keybindstrip.lua:1145 -- table.sort(etherealDescriptors, EtherealSort)
- libraries/zo_keybindstrip/zo_keybindstrip.lua:1157 -- table.sort(anchorTable, GamepadSort)
- libraries/zo_keybindstrip/zo_keybindstrip.lua:1159 -- table.sort(anchorTable, KeyboardSort)
- libraries/zo_pagedlist/zo_pagedlist.lua:60 -- table.sort(self.dataList, function(listEntry1, listEntry2) return self:CompareSortEntries(listEntry1, listEntry2) end)
- libraries/zo_parametricscrolllist/zo_parametricscrolllist.lua:746 -- table.sort(self.dataList, self.sortFunction)
- libraries/zo_scriptprofiler/zo_scriptprofiler.lua:90 -- table.sort(sorted, function(a, b)
return a.excludeTime > b.excludeTime
end)
- libraries/zo_sortfilterlist/gamepad/zo_interactivesortfilterlist_gamepad.lua:614 -- table.sort(scrollData, self.sortFunction)
- pregame/accountlogin/pegi.lua:67 -- table.sort(scrollData, countrySortFunction)
- pregame/accountlogin/keyboard/worldselect.lua:57 -- table.sort(dataList, SortWorlds)
- pregame/charactercreate/gamepad/zo_charactercreateslider_gamepad.lua:120 -- table.sort(colors, SortLightestFirst)
- pregame/charactercreate/gamepad/zo_charactercreate_gamepad.lua:1047 -- table.sort(controlData, ControlComparator)
- pregame/charactercreate/keyboard/zo_charactercreate_keyboard.lua:749 -- table.sort(sliderData, SliderComparator)
- pregame/characterselect/zo_characterselect_manager.lua:177 -- table.sort(self.characterDataList, CompareCharacterDataObjects)
- pregame/gamepad/worldselect/worldselectscreen_gamepad.lua:180 -- table.sort(worlds, function(a, b) return a.worldName < b.worldName end)
- pregameandingame/zo_addonmanager/zo_addonmanager.lua:354 -- table.sort(characterNames)
- pregameandingame/zo_addonmanager/zo_addonmanager.lua:501 -- table.sort(addonEntries, self.sortCallback)
- publicallingames/chapterupgrade/chapterupgrade_manager.lua:79 -- table.sort(rewardsTable, RewardEntryComparator)
- publicallingames/chapterupgrade/chapterupgrade_manager.lua:95 -- table.sort(self.editionRewards, RewardEntryComparator)
- publicallingames/chapterupgrade/chapterupgrade_manager.lua:268 -- table.sort(self.chapterUpgradeDataList, ChapterUpgradeDataSort)
- publicallingames/rewards/rewards_manager.lua:325 -- table.sort(choices, function(...) return self:SortChoiceRewardEntries(...) end)
- publicallingames/tooltip/collectionstooltips.lua:373 -- table.sort(tagStrings[i])
- publicallingames/tooltip/itemtooltips.lua:768 -- table.sort(itemTagStrings[i])
- publicallingames/tribute/tributedata.lua:442 -- table.sort(self.currentCards, ZO_TributePatronData.CompareTributeCards)
- publicallingames/tribute/tributedata.lua:443 -- table.sort(self.availableUpgradeCards, ZO_TributePatronData.CompareTributeCards)
- publicallingames/tribute/tributedata.lua:464 -- table.sort(self.tributePatrons, ZO_TributePatronData.CompareTo)
- publicallingames/tribute/tributedatamanager.lua:98 -- table.sort(self.patronCategories, ZO_TributePatronCategoryData.CompareTo)