Back to Home
ESO Function Data v101044
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:1316 -- table.sort(antiquitySection.list, antiquitySection.sortFunction)
- ingame/antiquities/keyboard/antiquityjournal_keyboard.lua:970 -- table.sort(antiquities, sortFunction)
- ingame/banking/gamepad/banking_gamepad.lua:82 -- table.sort(slots, self.list.sortFunction)
- ingame/battleground/battlegroundmedalinfo_shared.lua:171 -- table.sort(self.scoreboardEntryRawMedalData, MedalSort)
- ingame/battleground/battlegroundobjectivestatedisplay.lua:40 -- table.sort(self.objectives, self.sortFunction)
- ingame/battleground/battlegroundroundrecap.lua:219 -- table.sort(teamToRankData, function(a, b) return a.score > b.score end)
- ingame/battleground/battlegroundscoreboard.lua:580 -- table.sort(self.playerEntryData, SortPlayerData)
- ingame/battleground/battlegroundscoreboardroundindicator.lua:180 -- table.sort(tiedTeams, function(a,b) return a < b end)
- ingame/battleground/battlegroundscorehud.lua:268 -- 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:273 -- table.sort(rulesetIds, CompareRulesetsByDuration)
- ingame/campaign/campaignscoring_shared.lua:68 -- table.sort(scoreInfos, ScoreInfoComparator)
- ingame/campaign/gamepad/campaignbrowser_gamepad.lua:803 -- 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:816 -- table.sort(self.campaignRulesetTypes)
- ingame/campaign/gamepad/campaignemperor_gamepad.lua:140 -- table.sort(self.leaderboardAlliances, LeaderboardSortFunc)
- ingame/centerscreenannounce/centerscreenannounce.lua:1586 -- table.sort(self.displayQueue, SortMessageParams)
- ingame/champion/champion.lua:1670 -- table.sort(self.starsToAnimateForConfirm, SortConfirmStars)
- ingame/chatsystem/chatoptions.lua:204 -- table.sort(sortedEntries, FilterComparator)
- ingame/chatsystem/sharedchatsystem.lua:2168 -- table.sort(switches)
- ingame/chatsystem/gamepad/chatmenu_gamepad.lua:378 -- table.sort(switches)
- ingame/collections/collectibledatamanager.lua:531 -- 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:569 -- table.sort(tempTable, function(left, right)
return left.name < right.name
end)
- ingame/collections/collectibledatamanager.lua:651 -- table.sort(tempTable, function(left, right)
return left.name < right.name
end)
- ingame/collections/collectibledatamanager.lua:681 -- table.sort(self.sortedCollectibles, function(left, right)
local leftIsUnlocked = left:IsUnlocked()
local rightIsUnlocked = right:IsUnlocked()
if leftIsUnlocked ~= rightIsUnlocked then
return leftIsUnlocked
end
local leftIsValidForCharacter = IsCollectibleValidForPlayer(left:GetId())
local rightIsValidForCharacter = IsCollectibleValidForPlayer(right:GetId())
if leftIsValidForCharacter ~= rightIsValidForCharacter then
return leftIsValidForCharacter
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:726 -- 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:771 -- 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:619 -- table.sort(self.subcategories, ZO_ItemSetCollectionCategoryData.CompareTo)
- ingame/collections/itemsetcollectionsdata.lua:626 -- table.sort(self.collections, ZO_ItemSetCollectionData.CompareTo)
- ingame/collections/itemsetcollectionsdatamanager.lua:153 -- table.sort(self.topLevelCategories, ZO_ItemSetCollectionCategoryData.CompareTo)
- ingame/collections/tributepatronbook_shared.lua:224 -- table.sort(self.starterUniqueCardIds, ZO_TributePatronBook_Shared.CompareTributeStarterCards)
- ingame/companion/gamepad/companionequipment_gamepad.lua:774 -- 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:1923 -- table.sort(scrollData, self.sortFunction)
- ingame/contacts/notifications_common.lua:2003 -- 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:558 -- 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/scribingdatamanager.lua:80 -- table.sort(self.sortedCraftedAbilityTable, SortBySkillType)
- ingame/crafting/scribingdatamanager.lua:94 -- table.sort(self.sortedUnlockedCraftedAbilityTable, SortBySkillType)
- ingame/crafting/scribingdatamanager.lua:153 -- table.sort(unlockedScripts, SortByUnlocked)
- ingame/crafting/scribingdatamanager.lua:174 -- table.sort(allScripts, SortByUnlocked)
- ingame/crafting/sharedenchanting.lua:293 -- table.sort(sortedItems, CompareExtractingItems)
- ingame/crafting/smithingextraction_shared.lua:260 -- table.sort(sortedItems, CompareExtractingItems)
- ingame/crafting/universaldeconstructionpanel_shared.lua:294 -- 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:235 -- table.sort(attacks, SortAttacks)
- ingame/dyeing/dyeing_shared.lua:49 -- table.sort(slotsTable, DyeableSlotSortComparator)
- ingame/dyeing/dyeing_shared.lua:418 -- table.sort(sortedCategories)
- ingame/dyeing/dyeing_shared.lua:753 -- table.sort(self.dyesByHueCategory[hueCategory], ZO_Dyeing_DyeSortComparator)
- ingame/dyeing/dyeing_shared.lua:757 -- table.sort(self.dyesByRarity[rarity], ZO_Dyeing_DyeSortComparator)
- ingame/dyeing/gamepad/dyeing_gamepad.lua:302 -- table.sort(tempTable, ZO_DyeSwatchesGridSort)
- ingame/endlessdungeon/endlessdungeonbufftracker_shared.lua:233 -- 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:389 -- 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/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/housetours/housetoursdata.lua:332 -- table.sort(tagStrings)
- ingame/housetours/housetours_playerlistings_manager.lua:238 -- table.sort(self.sortedListingData, ZO_HouseToursPlayerListingData.CompareTo)
- ingame/housetours/housetours_search_manager.lua:221 -- table.sort(sortedResultsData, optionalSortFunction)
- ingame/housetours/gamepad/housetours_gamepad.lua:137 -- table.sort(self.oldTags)
- ingame/housetours/gamepad/housetours_gamepad.lua:146 -- table.sort(filters.tags)
- ingame/housetours/gamepad/housetours_gamepad.lua:1100 -- table.sort(newTags)
- ingame/housetours/gamepad/housetours_gamepad.lua:1101 -- table.sort(currentTags)
- ingame/housetours/keyboard/housetours_managelistings_keyboard.lua:416 -- table.sort(currentTags)
- ingame/housetours/keyboard/housetours_managelistings_keyboard.lua:417 -- table.sort(newTags)
- ingame/housetours/keyboard/housetours_searchresults_keyboard.lua:69 -- table.sort(self.oldTags)
- ingame/housetours/keyboard/housetours_searchresults_keyboard.lua:74 -- table.sort(filters.tags)
- ingame/housetours/keyboard/housetours_searchresults_keyboard.lua:84 -- table.sort(self.oldHouseIds)
- ingame/housetours/keyboard/housetours_searchresults_keyboard.lua:89 -- table.sort(filters.houseIds)
- ingame/housingeditor/furnitureclasses_shared.lua:942 -- table.sort(self.subcategories, SortCategories)
- ingame/housingeditor/housesettings_manager.lua:197 -- table.sort(houseEntries, ZO_HouseSettings_HouseEntrySort)
- ingame/housingeditor/housingeditorhud.lua:4193 -- table.sort(self.keybindDescriptors, CompareKeybindOrder)
- ingame/housingeditor/gamepad/furnitureclasses_gamepad.lua:317 -- table.sort(locationFilterEntries, CompareLocationFilters)
- ingame/housingeditor/gamepad/furnitureclasses_gamepad.lua:894 -- table.sort(sortedEntries, self.CompareFurnitureEntriesFunction)
- ingame/housingeditor/keyboard/furnitureclasses_keyboard.lua:433 -- table.sort(scrollData, self.CompareFurnitureEntriesFunction)
- ingame/housingeditor/keyboard/furnitureclasses_keyboard.lua:577 -- table.sort(scrollData, self.sortFunction)
- ingame/housingeditor/keyboard/furnitureclasses_keyboard.lua:656 -- table.sort(locationFilterEntries, CompareLocationFilters)
- ingame/inventory/inventory.lua:1374 -- table.sort(scrollData, inventory.sortFn)
- ingame/inventory/inventorywallet.lua:145 -- table.sort(scrollData, self.sortFunction)
- ingame/inventory/gamepad/gamepadinventory.lua:1350 -- table.sort(filteredDataTable, ZO_GamepadInventory_QuestItemSortComparator)
- ingame/inventory/gamepad/gamepadinventory.lua:1358 -- 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:202 -- 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:300 -- table.sort(sortedActivityData, LFGSort)
- ingame/lorelibrary/gamepad/lorelibrarybookset_gamepad.lua:155 -- table.sort(books, BookSorter)
- ingame/lorelibrary/gamepad/lorelibrary_gamepad.lua:140 -- table.sort(categories, NameSorter)
- ingame/lorelibrary/gamepad/lorelibrary_gamepad.lua:170 -- table.sort(collections, NameSorter)
- ingame/lorelibrary/keyboard/lorelibrary_keyboard.lua:191 -- table.sort(categories, NameSorter)
- ingame/lorelibrary/keyboard/lorelibrary_keyboard.lua:212 -- table.sort(collections, NameSorter)
- ingame/lorelibrary/keyboard/lorelibrary_keyboard.lua:390 -- table.sort(scrollData, BookEntryComparator)
- 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:4806 -- 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:270 -- table.sort(scrollData, self.sortFunction)
- ingame/repair/repairwindow.lua:218 -- table.sort(scrollData, Comparator)
- ingame/stats/title_manager.lua:67 -- table.sort(sortedTitles, CompareTitleItems)
- ingame/stats/gamepad/zo_stats_gamepad.lua:1223 -- table.sort(sortedArtificialEffectsTable, ArtificialEffectsRowComparator)
- ingame/stats/keyboard/zo_stats_keyboard.lua:952 -- table.sort(effectsRows, EffectsRowComparator)
- ingame/storewindow/gamepad/storewindow_gamepad_util.lua:470 -- 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:494 -- 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:92 -- 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:219 -- table.sort(self.categories, ZO_QuestJournal_Manager_SortQuestCategories)
- ingame/zo_quest/questjournal_manager.lua:220 -- 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/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:851 -- 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:338 -- 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/utility/zo_prioritizedvisibility.lua:206 -- table.sort(self.prioritizedObjects, self.priorityComparator)
- libraries/zo_combobox/zo_combobox_base.lua:204 -- 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:64 -- table.sort(self.dataList, function(listEntry1, listEntry2) return self:CompareSortEntries(listEntry1, listEntry2) end)
- libraries/zo_parametricscrolllist/zo_parametricscrolllist.lua:748 -- 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:620 -- 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)
- pregame/pregameanimatedbackground/gamepad/basebackground.lua:177 -- table.sort(g_backgroundParametersSorted, CompareBackgroundParametersByKey)
- 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:68 -- table.sort(rewardsTable, RewardEntryComparator)
- publicallingames/chapterupgrade/chapterupgrade_manager.lua:84 -- table.sort(self.editionRewards, RewardEntryComparator)
- publicallingames/chapterupgrade/chapterupgrade_manager.lua:261 -- table.sort(self.chapterUpgradeDataList, ChapterUpgradeDataSort)
- publicallingames/promotionalevent/promotionaleventdata.lua:269 -- table.sort(self.milestones, MilestoneComparator)
- 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:787 -- table.sort(itemTagStrings[i])
- publicallingames/tribute/tributedata.lua:438 -- table.sort(self.currentCards, ZO_TributePatronData.CompareTributeCards)
- publicallingames/tribute/tributedata.lua:439 -- table.sort(self.availableUpgradeCards, ZO_TributePatronData.CompareTributeCards)
- publicallingames/tribute/tributedata.lua:464 -- table.sort(self.tributePatrons, ZO_TributePatronData.CompareTo)
- publicallingames/tribute/tributedatamanager.lua:102 -- table.sort(self.patronCategories, ZO_TributePatronCategoryData.CompareTo)