advance_list 1.0.0 copy "advance_list: ^1.0.0" to clipboard
advance_list: ^1.0.0 copied to clipboard

get advance methods of [list object] thats not easy to make

this package contain advance methods of List object

Features #

1-get max/min value [int],[double] in the list 2-deeply comparing between two lists

Getting started #

first you need to import the package and then use these static methods findMax ... for find the max value findMin ... for find the min value listEqule ... to compare two lists listremover ... to remove the same elaments between two lists

Usage #

void main(){
    Advancelist.findMax(list: [1, 2, 4, 20]);//20
  Advancelist.findMin(list: [2, 4, 5, 2, 1]);//1
  Advancelist.listEqule(first: [1, 2, [2]], second: [1, 2, [2]]);//true
  Advancelist.listremover(first: [1, 2, 4], second: [1, 2, 3]);//first => 4 , second =>3
}

Additional information #

Good Luck

2
likes
100
pub points
0%
popularity

Publisher

unverified uploader

get advance methods of [list object] thats not easy to make

Documentation

API reference

License

unknown (LICENSE)

More

Packages that depend on advance_list