Lines Matching refs:LazyWrapper

1649       if (isObjectLike(value) && !isArray(value) && !(value instanceof LazyWrapper)) {
1785 function LazyWrapper(value) { class in runInContext
1804 var result = new LazyWrapper(this.__wrapped__);
1824 var result = new LazyWrapper(this);
1892 LazyWrapper.prototype = baseCreate(baseLodash.prototype); class
1893 LazyWrapper.prototype.constructor = LazyWrapper;
4364 if (result instanceof LazyWrapper) {
6341 if (typeof other != 'function' || !(funcName in LazyWrapper.prototype)) {
6806 if (wrapper instanceof LazyWrapper) {
8821 !(value instanceof LazyWrapper) || !isIndex(start)) {
9019 if (value instanceof LazyWrapper) {
9022 wrapped = new LazyWrapper(this);
16870 LazyWrapper.prototype[methodName] = function(n) {
16874 ? new LazyWrapper(this)
16888 LazyWrapper.prototype[methodName + 'Right'] = function(n) {
16898 LazyWrapper.prototype[methodName] = function(iteratee) {
16913 LazyWrapper.prototype[methodName] = function() {
16922 LazyWrapper.prototype[methodName] = function() {
16923 return this.__filtered__ ? new LazyWrapper(this) : this[dropName](1);
16927 LazyWrapper.prototype.compact = function() {
16931 LazyWrapper.prototype.find = function(predicate) {
16935 LazyWrapper.prototype.findLast = function(predicate) {
16939 LazyWrapper.prototype.invokeMap = baseRest(function(path, args) {
16941 return new LazyWrapper(this);
16948 LazyWrapper.prototype.reject = function(predicate) {
16952 LazyWrapper.prototype.slice = function(start, end) {
16957 return new LazyWrapper(result);
16971 LazyWrapper.prototype.takeRightWhile = function(predicate) {
16975 LazyWrapper.prototype.toArray = function() {
16980 baseForOwn(LazyWrapper.prototype, function(func, methodName) {
16992 isLazy = value instanceof LazyWrapper,
17011 value = onlyLazy ? value : new LazyWrapper(this);
17043 baseForOwn(LazyWrapper.prototype, function(func, methodName) {
17060 LazyWrapper.prototype.clone = lazyClone;
17061 LazyWrapper.prototype.reverse = lazyReverse;
17062 LazyWrapper.prototype.value = lazyValue;