@@ -274,7 +274,7 @@ exports.returnType = as.lists.returnType
274274 */
275275exports . setOrder = function ( bin , order ) {
276276 return new ListOperation ( opcodes . LIST_SET_ORDER , bin , {
277- order : order
277+ order
278278 } )
279279}
280280
@@ -290,7 +290,7 @@ exports.setOrder = function (bin, order) {
290290 */
291291exports . sort = function ( bin , flags ) {
292292 return new ListOperation ( opcodes . LIST_SORT , bin , {
293- flags : flags
293+ flags
294294 } )
295295}
296296
@@ -330,8 +330,8 @@ exports.sort = function (bin, flags) {
330330 */
331331exports . append = function ( bin , value , policy ) {
332332 return new ListOperation ( opcodes . LIST_APPEND , bin , {
333- value : value ,
334- policy : policy
333+ value,
334+ policy
335335 } )
336336}
337337
@@ -371,8 +371,8 @@ exports.append = function (bin, value, policy) {
371371 */
372372exports . appendItems = function ( bin , list , policy ) {
373373 return new ListOperation ( opcodes . LIST_APPEND_ITEMS , bin , {
374- list : list ,
375- policy : policy
374+ list,
375+ policy
376376 } )
377377}
378378
@@ -413,9 +413,9 @@ exports.appendItems = function (bin, list, policy) {
413413 */
414414exports . insert = function ( bin , index , value , policy ) {
415415 return new ListOperation ( opcodes . LIST_INSERT , bin , {
416- index : index ,
417- value : value ,
418- policy : policy
416+ index,
417+ value,
418+ policy
419419 } )
420420}
421421
@@ -455,9 +455,9 @@ exports.insert = function (bin, index, value, policy) {
455455 */
456456exports . insertItems = function ( bin , index , list , policy ) {
457457 return new ListOperation ( opcodes . LIST_INSERT_ITEMS , bin , {
458- index : index ,
459- list : list ,
460- policy : policy
458+ index,
459+ list,
460+ policy
461461 } )
462462}
463463
@@ -663,8 +663,8 @@ exports.removeRange = function (bin, index, count) {
663663 */
664664exports . removeByIndex = function ( bin , index , returnType ) {
665665 return new ListOperation ( opcodes . LIST_REMOVE_BY_INDEX , bin , {
666- index : index ,
667- returnType : returnType
666+ index,
667+ returnType
668668 } )
669669}
670670
@@ -691,9 +691,9 @@ exports.removeByIndex = function (bin, index, returnType) {
691691 */
692692exports . removeByIndexRange = function ( bin , index , count , returnType ) {
693693 return new InvertibleListOp ( opcodes . LIST_REMOVE_BY_INDEX_RANGE , bin , {
694- index : index ,
695- count : count ,
696- returnType : returnType
694+ index,
695+ count,
696+ returnType
697697 } )
698698}
699699
@@ -718,8 +718,8 @@ exports.removeByIndexRange = function (bin, index, count, returnType) {
718718 */
719719exports . removeByValue = function ( bin , value , returnType ) {
720720 return new InvertibleListOp ( opcodes . LIST_REMOVE_BY_VALUE , bin , {
721- value : value ,
722- returnType : returnType
721+ value,
722+ returnType
723723 } )
724724}
725725
@@ -744,8 +744,8 @@ exports.removeByValue = function (bin, value, returnType) {
744744 */
745745exports . removeByValueList = function ( bin , values , returnType ) {
746746 return new InvertibleListOp ( opcodes . LIST_REMOVE_BY_VALUE_LIST , bin , {
747- values : values ,
748- returnType : returnType
747+ values,
748+ returnType
749749 } )
750750}
751751
@@ -775,9 +775,9 @@ exports.removeByValueList = function (bin, values, returnType) {
775775 */
776776exports . removeByValueRange = function ( bin , begin , end , returnType ) {
777777 return new InvertibleListOp ( opcodes . LIST_REMOVE_BY_VALUE_RANGE , bin , {
778- begin : begin ,
779- end : end ,
780- returnType : returnType
778+ begin,
779+ end,
780+ returnType
781781 } )
782782}
783783
@@ -844,10 +844,10 @@ exports.removeByValueRange = function (bin, begin, end, returnType) {
844844 */
845845exports . removeByValueRelRankRange = function ( bin , value , rank , count , returnType ) {
846846 return new InvertibleListOp ( opcodes . LIST_REMOVE_BY_VALUE_REL_RANK_RANGE , bin , {
847- value : value ,
848- rank : rank ,
849- count : count ,
850- returnType : returnType
847+ value,
848+ rank,
849+ count,
850+ returnType
851851 } )
852852}
853853
@@ -872,8 +872,8 @@ exports.removeByValueRelRankRange = function (bin, value, rank, count, returnTyp
872872 */
873873exports . removeByRank = function ( bin , rank , returnType ) {
874874 return new ListOperation ( opcodes . LIST_REMOVE_BY_RANK , bin , {
875- rank : rank ,
876- returnType : returnType
875+ rank,
876+ returnType
877877 } )
878878}
879879
@@ -900,9 +900,9 @@ exports.removeByRank = function (bin, rank, returnType) {
900900 */
901901exports . removeByRankRange = function ( bin , rank , count , returnType ) {
902902 return new InvertibleListOp ( opcodes . LIST_REMOVE_BY_RANK_RANGE , bin , {
903- rank : rank ,
904- count : count ,
905- returnType : returnType
903+ rank,
904+ count,
905+ returnType
906906 } )
907907}
908908
@@ -1138,8 +1138,8 @@ exports.getRange = function (bin, index, count) {
11381138 */
11391139exports . getByIndex = function ( bin , index , returnType ) {
11401140 return new ListOperation ( opcodes . LIST_GET_BY_INDEX , bin , {
1141- index : index ,
1142- returnType : returnType
1141+ index,
1142+ returnType
11431143 } )
11441144}
11451145
@@ -1166,9 +1166,9 @@ exports.getByIndex = function (bin, index, returnType) {
11661166 */
11671167exports . getByIndexRange = function ( bin , index , count , returnType ) {
11681168 return new InvertibleListOp ( opcodes . LIST_GET_BY_INDEX_RANGE , bin , {
1169- index : index ,
1170- count : count ,
1171- returnType : returnType
1169+ index,
1170+ count,
1171+ returnType
11721172 } )
11731173}
11741174
@@ -1193,8 +1193,8 @@ exports.getByIndexRange = function (bin, index, count, returnType) {
11931193 */
11941194exports . getByValue = function ( bin , value , returnType ) {
11951195 return new InvertibleListOp ( opcodes . LIST_GET_BY_VALUE , bin , {
1196- value : value ,
1197- returnType : returnType
1196+ value,
1197+ returnType
11981198 } )
11991199}
12001200
@@ -1219,8 +1219,8 @@ exports.getByValue = function (bin, value, returnType) {
12191219 */
12201220exports . getByValueList = function ( bin , values , returnType ) {
12211221 return new InvertibleListOp ( opcodes . LIST_GET_BY_VALUE_LIST , bin , {
1222- values : values ,
1223- returnType : returnType
1222+ values,
1223+ returnType
12241224 } )
12251225}
12261226
@@ -1250,9 +1250,9 @@ exports.getByValueList = function (bin, values, returnType) {
12501250 */
12511251exports . getByValueRange = function ( bin , begin , end , returnType ) {
12521252 return new InvertibleListOp ( opcodes . LIST_GET_BY_VALUE_RANGE , bin , {
1253- begin : begin ,
1254- end : end ,
1255- returnType : returnType
1253+ begin,
1254+ end,
1255+ returnType
12561256 } )
12571257}
12581258
@@ -1318,10 +1318,10 @@ exports.getByValueRange = function (bin, begin, end, returnType) {
13181318 */
13191319exports . getByValueRelRankRange = function ( bin , value , rank , count , returnType ) {
13201320 return new InvertibleListOp ( opcodes . LIST_GET_BY_VALUE_REL_RANK_RANGE , bin , {
1321- value : value ,
1322- rank : rank ,
1323- count : count ,
1324- returnType : returnType
1321+ value,
1322+ rank,
1323+ count,
1324+ returnType
13251325 } )
13261326}
13271327
@@ -1346,8 +1346,8 @@ exports.getByValueRelRankRange = function (bin, value, rank, count, returnType)
13461346 */
13471347exports . getByRank = function ( bin , rank , returnType ) {
13481348 return new ListOperation ( opcodes . LIST_GET_BY_RANK , bin , {
1349- rank : rank ,
1350- returnType : returnType
1349+ rank,
1350+ returnType
13511351 } )
13521352}
13531353
@@ -1374,9 +1374,9 @@ exports.getByRank = function (bin, rank, returnType) {
13741374 */
13751375exports . getByRankRange = function ( bin , rank , count , returnType ) {
13761376 return new InvertibleListOp ( opcodes . LIST_GET_BY_RANK_RANGE , bin , {
1377- rank : rank ,
1378- count : count ,
1379- returnType : returnType
1377+ rank,
1378+ count,
1379+ returnType
13801380 } )
13811381}
13821382
@@ -1420,9 +1420,9 @@ exports.getByRankRange = function (bin, rank, count, returnType) {
14201420 */
14211421exports . increment = function ( bin , index , value , policy ) {
14221422 return new ListOperation ( opcodes . LIST_INCREMENT , bin , {
1423- index : index ,
1424- value : value ,
1425- policy : policy
1423+ index,
1424+ value,
1425+ policy
14261426 } )
14271427}
14281428
0 commit comments