Performs exactly the same as #add(java.lang.Double) . @param e the value to add @return true if it was added, false otherwise
(double e)
| 78 | * @return true if it was added, false otherwise |
| 79 | */ |
| 80 | public boolean add(double e) |
| 81 | { |
| 82 | enlageIfNeeded(1); |
| 83 | array[end] = e; |
| 84 | increasedSize(1); |
| 85 | return true; |
| 86 | } |
| 87 | |
| 88 | /** |
| 89 | * Makes the changes indicating that a number of items have been removed |