From 7f52af4b94fa121c769db12b93314388900731e8 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Wed, 24 Aug 2016 03:05:40 +0300 Subject: [PATCH] working on docs.. Signed-off-by: Alex A. Naanou --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e98f182..80baaaf 100644 --- a/README.md +++ b/README.md @@ -57,6 +57,10 @@ not reusable, i.e.: either copy/rewrite it or complicate the code. - we can't use the extending method stand-alone, for example for testing +It is possible to go around these issues but not without introducing +complicated and/or redundant code, _Actions_ implements one approach to +abstract this... + #### The solution: @@ -94,7 +98,6 @@ n .times(2) ``` -Now: - `this` is returned automatically enabling us to chain calls to `.times(..)` - the _super_ method is resolved and called automatically - both `N` and `ExtendedN` are independent of each other and reusable @@ -144,8 +147,6 @@ Now: ---- - ### The main entities: