- update all documentation to be in godoc style

This commit is contained in:
Emir Pasic
2016-06-25 17:02:21 +02:00
parent 2ccfba5f93
commit 59bebe43ce
22 changed files with 95 additions and 49 deletions
+4 -3
View File
@@ -24,10 +24,11 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
// Implementation of stack backed by ArrayList.
// Package arraystack implements a stack backed by array list.
//
// Structure is not thread safe.
// References: http://en.wikipedia.org/wiki/Stack_%28abstract_data_type%29
//
// Reference: https://en.wikipedia.org/wiki/Stack_%28abstract_data_type%29#Array
package arraystack
import (