aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/src/main/kotlin/utils/alphabeticalOrder.kt
blob: ed620b34af699c6673fd677d4bb925228f820e84 (plain)
1
2
3
4
5
6
7
8
9
10
11
/*
 * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
 */

package org.jetbrains.dokka.base.utils


/**
 * Canonical alphabetical order to sort named elements
 */
internal val canonicalAlphabeticalOrder: Comparator<in String> = String.CASE_INSENSITIVE_ORDER.thenBy { it }