• Follow two- to three-part commands: "Put your book away, brush your teeth, and then get in bed." • Recognize familiar word signs such as "STOP" • Better understand the concept of time • Count ten or more objects • Correctly name at least four colors and three shapes Elixir 1.0 is almost 4yo
@deprecated/@since @doc "Breaks a collection into chunks" @since "1.0.0" @deprecated "Use chunk_every/2 instead" def chunk(collection, chunk_size) do chunk_every(collection, chunk_size) end
@deprecated/@since @doc "Breaks a collection into chunks" @since "1.0.0" @deprecated "Use chunk_every/2 instead" def chunk(collection, chunk_size) do chunk_every(collection, chunk_size) end
@deprecated/@since @doc "Breaks a collection into chunks" @since "1.0.0" @deprecated "Use chunk_every/2 instead" def chunk(collection, chunk_size) do chunk_every(collection, chunk_size) end
--slowest N $ mix test --slowest 2 Finished in 1.4 seconds Top 3 slowest (0.9s), 61.0% of total time: * test client suicide (602.8ms) (RedixTest) * test unable to connect (201.2ms) (RedixTest) * test timeouts (101.8ms) (RedixTest)
use ExUnitProperties property "bin1 <> bin2 always starts with bin1" do check all bin1 <- binary(), bin2 <- binary() do assert String.starts_with?(bin1 <> bin2, bin1) end end