From 7d9b31cb2b59ea8c37a7e3eb90fe24328d6b8151 Mon Sep 17 00:00:00 2001 From: Jeff Fessler Date: Sat, 10 Jul 2021 11:46:34 -0400 Subject: [PATCH] url --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8726f07..7d4d077 100644 --- a/README.md +++ b/README.md @@ -15,10 +15,11 @@ https://github.com/JuliaArrays/LazyGrids.jl This package exports the following methods: * `ndgrid` : a "lazy" version of `ndgrid` that returns a tuple of - `AbstractArray` objects essentially instantly with almost no memory allocated. + [`AbstractArray`](https://docs.julialang.org/en/v1/manual/interfaces/#man-interface-array) + objects essentially instantly with just a few bytes of memory allocated. * `ndgrid_array` : return a traditional tuple of `Array` objects, - which takes much longer to create and uses a lot of memory. - It is not recommended but is included for comparison. + which takes much longer to create and can use a *lot* of memory. + It is not recommended, but is included for comparison purposes. See the documentation linked in the blue badges above for examples, and for a 1-line lazy version of `meshgrid`.