= Untargettedバインディング = ターゲットを決めずにバインディングを作成することもできる。 これは、@ImplementedByや@ProvidedByでアノテートされたコンクリートクラスに便利である。 Untargettedバインディングはインジェクタにタイプのみを伝えるため、インジェクタは依存性を早期に準備する。 Untargettedバインディングはto句は不要である。 {{{ bind(MyConcreteClass.class); bind(AnotherConcreteClass.class).in(Singleton.class); }}}