摘要: A Proxy allows you to trap what happens when you try to get a property value off of an object and do some behavior before the value is accessed. For e 阅读全文
posted @ 2019-05-31 22:17 Zhentiw 阅读(147) 评论(0) 推荐(0)
摘要: // --- Directions // Given a string, return the character that is most // commonly used in the string. // --- Examples // maxChar("abcccccccd") === "c" // maxChar("apple 1231111") === "1" function m... 阅读全文
posted @ 2019-05-31 22:15 Zhentiw 阅读(198) 评论(0) 推荐(0)
摘要: ReaderT is a Monad Transformer that wraps a given Monad with a Reader. This allows the interface of a Reader that enables the composition of computati 阅读全文
posted @ 2019-05-31 22:08 Zhentiw 阅读(225) 评论(0) 推荐(0)