This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright (c), Mohamed Ali Jamaoui, All rights reserved | |
* released under the MIT license | |
*/ | |
var dm = {}; | |
dm.dataMiner = function module(){ | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.ArrayList; | |
import java.util.LinkedList; | |
import java.util.List; | |
public class Benchmark { | |
public static void main(String[] args) { | |
ArrayList<Integer> arrayList = new ArrayList<Integer>(); | |
LinkedList<Integer> linkedList = new LinkedList<Integer>(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* OData filter preparator: | |
* simple, compact and easy to extend | |
* copyright (c) Mohamed Ali Jamaoui 2013 | |
* | |
* can be used on the fly to prepare the OData filter | |
* can easly be extended to handle new Edm types | |
* > the list of Edm types can be found here: | |
* > http://www.odata.org/documentation/odata-v2-documentation/overview/#6_Primitive_Data_Types | |
* > check the detailed description here: http://intelligea.wordpress.com/2013/10/12/how-to-format-odata-filters-values-on-the-fly-using-their-edm-types/ |
NewerOlder