예제 #1
0
파일: TreeSet.cs 프로젝트: minam365/JavApi
 /*
  * Answers the first element in this TreeSet.
  *
  * @return the first element
  *
  * @exception NoSuchElementException
  *                when this TreeSet is empty
  */
 public E first()
 {
     return(backingMap.firstKey());
 }