Code Monkey home page Code Monkey logo

collectionfactory's People

Contributors

elliotchance avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

collectionfactory's Issues

Passing a single "\r\n" pair crashes the socket

if (nil == JSONString || JSONString.length == 0) {

When NOT using CRLF as a readDelimiter, passing a single "\r\n" pair to the socket passes this test (i.e. != nil and .length == 2), but then gets trimmed off at L16/L17, resulting in an empty string @L17, resulting in an empty array @L22, causing L36 to fault.

FIX: whitespace should be trimmed (i.e. L16/L17) BEFORE this sanity check at L11.

Reflection capabilities

CollectionFactory does a lot of this stuff internally, but they should be exposed so that people can check types, test if properties exist etc

Add pretty formatting

Useful for both debugging and printing to human-maintainable files:

jsonStringWithPrettyFormat
jsonDataWithPrettyFormat

Support NSSet and others

There are some other native collection types that do not have the categories for the functionality

Support for parsing a collection of collections

Something that could be done with a loop:

NSArray *objs = ...
NSMutableArray *decoded = [NSMutableArray new];
for (NSDictionary *obj in objs) {
    [decoded addObject:[SomeObject objectWith...]];
}

Can be simplified to something like:

NSArray *objs = ...
NSArray *decoded = [SomeObject objectsWith...: objs];

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.