summaryrefslogtreecommitdiff
path: root/src/scaladoc/scala/tools/nsc/doc/Index.scala
blob: a11ca38a866aad28024d6ed8378796ce5565f655 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* NSC -- new Scala compiler
 * Copyright 2005-2013 LAMP/EPFL
 * @author  Martin Odersky
 */

package scala.tools.nsc.doc

import scala.collection._

trait Index {
  type SymbolMap = SortedMap[String, SortedSet[model.MemberEntity]]

  def firstLetterIndex: Map[Char, SymbolMap]

  def hasDeprecatedMembers: Boolean
}