OrderedSet#toArray()

toArrayArrayprivate Defined in packages/ember-metal/lib/map.js:195 Returns: Array

DS.Model.eachRelatedType()

eachRelatedType (callback, binding) static Defined in addon/-private/system/relationships/ext.js:559 Given a callback, iterates over each of the types related to a model, invoking the callback with the related type's class. Each type will be returned just once, regardless of how many different relationships it has with a model. Parameters: callback Function the callback to invoke binding Any the value to which the callback's `this` should be bound

Inflector#singularize()

singularize (word) Defined in node_modules/ember-inflector/addon/lib/system/inflector.js:222 Parameters: word String

PromiseProxyMixin#catch()

catch (callback) RSVP.Promisepublic Defined in packages/ember-runtime/lib/mixins/promise_proxy.js:177 Available since 1.3.0 An alias to the proxied promise's catch. See RSVP.Promise.catch. Parameters: callback Function Returns: RSVP.Promise

ProxyMixin

Ember.ProxyMixin Class PRIVATE Defined in: packages/ember-runtime/lib/mixins/-proxy.js:43 Module: ember-runtime Ember.ProxyMixin forwards all properties not defined by the proxy itself to a proxied content object. See Ember.ObjectProxy for more details.

Registry

Registry Class PRIVATE Defined in: packages/container/lib/registry.js:9 Module: ember A registry used to store factory and option information keyed by type. A Registry stores the factory and option information needed by a Container to instantiate and cache objects. The API for Registry is still in flux and should not be considered stable.

Mixin#detect()

detect (obj) Booleanprivate Defined in packages/ember-metal/lib/mixin.js:586 Parameters: obj Returns: Boolean

Test#removeTestHelpers()

removeTestHelperspublic Defined in packages/ember-testing/lib/ext/application.js:138 This removes all helpers that have been registered, and resets and functions that were overridden by the helpers. Example: App.removeTestHelpers();

HTMLBars

Ember.HTMLBars Class Module: ember-htmlbars

DS.Model._create()

_createprivatestatic Defined in addon/-private/system/model/model.js:959 Alias DS.Model's create method to _create. This allows us to create DS.Model instances from within the store, but if end users accidentally call create() (instead of createRecord()), we can raise an error.