@@ -391,7 +391,7 @@ public int index(float what) {
391391
392392 /**
393393 * @webref floatlist:method
394- * @brief To come...
394+ * @brief Check if a number is a part of the list
395395 */
396396 public boolean hasValue (float value ) {
397397 if (Float .isNaN (value )) {
@@ -418,39 +418,39 @@ public boolean hasValue(float value) {
418418
419419 /**
420420 * @webref floatlist:method
421- * @brief To come...
421+ * @brief Add to a value
422422 */
423423 public void add (int index , float amount ) {
424424 data [index ] += amount ;
425425 }
426426
427427 /**
428428 * @webref floatlist:method
429- * @brief To come...
429+ * @brief Subtract from a value
430430 */
431431 public void sub (int index , float amount ) {
432432 data [index ] -= amount ;
433433 }
434434
435435 /**
436436 * @webref floatlist:method
437- * @brief To come...
437+ * @brief Multiply a value
438438 */
439439 public void mult (int index , float amount ) {
440440 data [index ] *= amount ;
441441 }
442442
443443 /**
444444 * @webref floatlist:method
445- * @brief To come...
445+ * @brief Divide a value
446446 */
447447 public void div (int index , float amount ) {
448448 data [index ] /= amount ;
449449 }
450450
451451 /**
452452 * @webref floatlist:method
453- * @brief To come...
453+ * @brief Return the smallest value
454454 */
455455 public float min () {
456456 if (count == 0 ) {
@@ -480,7 +480,7 @@ public float min() {
480480
481481 /**
482482 * @webref floatlist:method
483- * @brief To come...
483+ * @brief Return the largest value
484484 */
485485 public float max () {
486486 if (count == 0 ) {
@@ -513,7 +513,7 @@ public float max() {
513513 * Sorts the array in place.
514514 *
515515 * @webref floatlist:method
516- * @brief Sorts an array in place
516+ * @brief Sorts an array, lowest to highest
517517 */
518518 public void sort () {
519519 Arrays .sort (data , 0 , count );
@@ -524,7 +524,7 @@ public void sort() {
524524 * Reverse sort, orders values from highest to lowest
525525 *
526526 * @webref floatlist:method
527- * @brief To come...
527+ * @brief Reverse sort, orders values from highest to lowest
528528 */
529529 public void sortReverse () {
530530 new Sort () {
@@ -567,7 +567,7 @@ public void subset(int start, int num) {
567567
568568 /**
569569 * @webref floatlist:method
570- * @brief To come...
570+ * @brief Reverse sort, orders values by first digit
571571 */
572572 public void reverse () {
573573 int ii = count - 1 ;
0 commit comments